ADAPT-Chase commited on
Commit
10ef3f1
·
verified ·
1 Parent(s): baccfba

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +84 -0
  2. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/class-use/Log.html +248 -0
  3. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/class-use/Message.html +317 -0
  4. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html +290 -0
  5. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html +233 -0
  6. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/KCVSLog.html +625 -0
  7. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html +434 -0
  8. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html +264 -0
  9. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/class-use/ExternalCachePersistor.html +166 -0
  10. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/class-use/ExternalPersistor.html +181 -0
  11. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLog.html +188 -0
  12. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLogManager.html +189 -0
  13. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/class-use/KCVSMessage.html +126 -0
  14. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/package-frame.html +28 -0
  15. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/package-summary.html +177 -0
  16. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/package-tree.html +150 -0
  17. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/package-use.html +198 -0
  18. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/AbstractMessage.html +400 -0
  19. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/FutureMessage.html +367 -0
  20. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/ProcessMessageJob.html +290 -0
  21. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/class-use/AbstractMessage.html +168 -0
  22. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/class-use/FutureMessage.html +126 -0
  23. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/class-use/ProcessMessageJob.html +126 -0
  24. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/package-frame.html +23 -0
  25. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/package-summary.html +160 -0
  26. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/package-tree.html +149 -0
  27. platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/package-use.html +162 -0
  28. platform/dbops/binaries/java/jre11/NOTICE +63 -0
  29. platform/dbops/binaries/java/jre11/bin/jaotc +0 -0
  30. platform/dbops/binaries/java/jre11/bin/java +0 -0
  31. platform/dbops/binaries/java/jre11/bin/jfr +0 -0
  32. platform/dbops/binaries/java/jre11/bin/jjs +0 -0
  33. platform/dbops/binaries/java/jre11/bin/jrunscript +0 -0
  34. platform/dbops/binaries/java/jre11/bin/keytool +0 -0
  35. platform/dbops/binaries/java/jre11/bin/pack200 +0 -0
  36. platform/dbops/binaries/java/jre11/bin/rmid +0 -0
  37. platform/dbops/binaries/java/jre11/bin/rmiregistry +0 -0
  38. platform/dbops/binaries/java/jre11/bin/unpack200 +3 -0
  39. platform/dbops/binaries/java/jre11/conf/logging.properties +63 -0
  40. platform/dbops/binaries/java/jre11/conf/management/jmxremote.access +79 -0
  41. platform/dbops/binaries/java/jre11/conf/management/jmxremote.password.template +115 -0
  42. platform/dbops/binaries/java/jre11/conf/management/management.properties +302 -0
  43. platform/dbops/binaries/java/jre11/conf/net.properties +139 -0
  44. platform/dbops/binaries/java/jre11/conf/security/java.policy +46 -0
  45. platform/dbops/binaries/java/jre11/conf/security/java.security +1387 -0
  46. platform/dbops/binaries/java/jre11/conf/security/policy/README.txt +54 -0
  47. platform/dbops/binaries/java/jre11/conf/security/policy/limited/default_US_export.policy +6 -0
  48. platform/dbops/binaries/java/jre11/conf/security/policy/limited/default_local.policy +14 -0
  49. platform/dbops/binaries/java/jre11/conf/security/policy/limited/exempt_local.policy +13 -0
  50. platform/dbops/binaries/java/jre11/conf/security/policy/unlimited/default_US_export.policy +6 -0
.gitattributes CHANGED
@@ -2673,3 +2673,87 @@ platform/dbops/binaries/janusgraph/elasticsearch/jdk/lib/server/classes.jsa filt
2673
  platform/dbops/binaries/janusgraph/elasticsearch/jdk/lib/server/classes_nocoops.jsa filter=lfs diff=lfs merge=lfs -text
2674
  platform/dbops/binaries/janusgraph/elasticsearch/jdk/lib/security/cacerts filter=lfs diff=lfs merge=lfs -text
2675
  platform/dbops/binaries/janusgraph/elasticsearch/jdk/lib/security/public_suffix_list.dat filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2673
  platform/dbops/binaries/janusgraph/elasticsearch/jdk/lib/server/classes_nocoops.jsa filter=lfs diff=lfs merge=lfs -text
2674
  platform/dbops/binaries/janusgraph/elasticsearch/jdk/lib/security/cacerts filter=lfs diff=lfs merge=lfs -text
2675
  platform/dbops/binaries/janusgraph/elasticsearch/jdk/lib/security/public_suffix_list.dat filter=lfs diff=lfs merge=lfs -text
2676
+ platform/dbops/binaries/java/jre11/bin/unpack200 filter=lfs diff=lfs merge=lfs -text
2677
+ platform/dbops/binaries/java/jre11/lib/jrt-fs.jar filter=lfs diff=lfs merge=lfs -text
2678
+ platform/dbops/binaries/java/jre11/lib/libunpack.so filter=lfs diff=lfs merge=lfs -text
2679
+ platform/dbops/binaries/java/jre11/lib/libzip.so filter=lfs diff=lfs merge=lfs -text
2680
+ platform/dbops/binaries/java/jre11/lib/libjimage.so filter=lfs diff=lfs merge=lfs -text
2681
+ platform/dbops/binaries/java/jre11/lib/libawt.so filter=lfs diff=lfs merge=lfs -text
2682
+ platform/dbops/binaries/java/jre11/lib/libnet.so filter=lfs diff=lfs merge=lfs -text
2683
+ platform/dbops/binaries/java/jre11/lib/libfontmanager.so filter=lfs diff=lfs merge=lfs -text
2684
+ platform/dbops/binaries/java/jre11/lib/tzdb.dat filter=lfs diff=lfs merge=lfs -text
2685
+ platform/dbops/binaries/java/jre11/lib/libawt_xawt.so filter=lfs diff=lfs merge=lfs -text
2686
+ platform/dbops/binaries/java/jre11/lib/modules filter=lfs diff=lfs merge=lfs -text
2687
+ platform/dbops/binaries/java/jre11/lib/liblcms.so filter=lfs diff=lfs merge=lfs -text
2688
+ platform/dbops/binaries/java/jre11/lib/libjavajpeg.so filter=lfs diff=lfs merge=lfs -text
2689
+ platform/dbops/binaries/java/jre11/lib/libmlib_image.so filter=lfs diff=lfs merge=lfs -text
2690
+ platform/dbops/binaries/java/jre11/lib/libjdwp.so filter=lfs diff=lfs merge=lfs -text
2691
+ platform/dbops/binaries/java/jre11/lib/libsunec.so filter=lfs diff=lfs merge=lfs -text
2692
+ platform/dbops/binaries/java/jre11/lib/libjava.so filter=lfs diff=lfs merge=lfs -text
2693
+ platform/dbops/binaries/java/jre11/lib/libsplashscreen.so filter=lfs diff=lfs merge=lfs -text
2694
+ platform/dbops/binaries/java/jre11/lib/server/libjvm.so filter=lfs diff=lfs merge=lfs -text
2695
+ platform/dbops/binaries/java/jre11/lib/security/public_suffix_list.dat filter=lfs diff=lfs merge=lfs -text
2696
+ platform/dbops/binaries/java/jre11/lib/security/cacerts filter=lfs diff=lfs merge=lfs -text
2697
+ platform/dbops/binaries/java/jre11/lib/jli/libjli.so filter=lfs diff=lfs merge=lfs -text
2698
+ platform/dbops/binaries/redis/src/src/sds.o filter=lfs diff=lfs merge=lfs -text
2699
+ platform/dbops/binaries/redis/src/src/quicklist.o filter=lfs diff=lfs merge=lfs -text
2700
+ platform/dbops/binaries/redis/src/src/ziplist.o filter=lfs diff=lfs merge=lfs -text
2701
+ platform/dbops/binaries/redis/src/src/dict.o filter=lfs diff=lfs merge=lfs -text
2702
+ platform/dbops/binaries/redis/src/src/cli_commands.o filter=lfs diff=lfs merge=lfs -text
2703
+ platform/dbops/binaries/redis/src/src/pubsub.o filter=lfs diff=lfs merge=lfs -text
2704
+ platform/dbops/binaries/redis/src/src/util.o filter=lfs diff=lfs merge=lfs -text
2705
+ platform/dbops/binaries/redis/src/src/slowlog.o filter=lfs diff=lfs merge=lfs -text
2706
+ platform/dbops/binaries/redis/src/src/listpack.o filter=lfs diff=lfs merge=lfs -text
2707
+ platform/dbops/binaries/redis/src/src/multi.o filter=lfs diff=lfs merge=lfs -text
2708
+ platform/dbops/binaries/redis/src/src/redis-check-rdb.o filter=lfs diff=lfs merge=lfs -text
2709
+ platform/dbops/binaries/redis/src/src/t_list.o filter=lfs diff=lfs merge=lfs -text
2710
+ platform/dbops/binaries/redis/src/src/blocked.o filter=lfs diff=lfs merge=lfs -text
2711
+ platform/dbops/binaries/redis/src/src/latency.o filter=lfs diff=lfs merge=lfs -text
2712
+ platform/dbops/binaries/redis/src/src/expire.o filter=lfs diff=lfs merge=lfs -text
2713
+ platform/dbops/binaries/redis/src/src/t_set.o filter=lfs diff=lfs merge=lfs -text
2714
+ platform/dbops/binaries/redis/src/src/t_string.o filter=lfs diff=lfs merge=lfs -text
2715
+ platform/dbops/binaries/redis/src/src/socket.o filter=lfs diff=lfs merge=lfs -text
2716
+ platform/dbops/binaries/redis/src/src/bio.o filter=lfs diff=lfs merge=lfs -text
2717
+ platform/dbops/binaries/redis/src/src/unix.o filter=lfs diff=lfs merge=lfs -text
2718
+ platform/dbops/binaries/redis/src/src/tls.o filter=lfs diff=lfs merge=lfs -text
2719
+ platform/dbops/binaries/redis/src/src/sort.o filter=lfs diff=lfs merge=lfs -text
2720
+ platform/dbops/binaries/redis/src/src/rax.o filter=lfs diff=lfs merge=lfs -text
2721
+ platform/dbops/binaries/redis/src/src/debug.o filter=lfs diff=lfs merge=lfs -text
2722
+ platform/dbops/binaries/redis/src/src/db.o filter=lfs diff=lfs merge=lfs -text
2723
+ platform/dbops/binaries/redis/src/src/tracking.o filter=lfs diff=lfs merge=lfs -text
2724
+ platform/dbops/binaries/redis/src/src/timeout.o filter=lfs diff=lfs merge=lfs -text
2725
+ platform/dbops/binaries/redis/src/src/geo.o filter=lfs diff=lfs merge=lfs -text
2726
+ platform/dbops/binaries/redis/src/src/t_hash.o filter=lfs diff=lfs merge=lfs -text
2727
+ platform/dbops/binaries/redis/src/src/script.o filter=lfs diff=lfs merge=lfs -text
2728
+ platform/dbops/binaries/redis/src/src/evict.o filter=lfs diff=lfs merge=lfs -text
2729
+ platform/dbops/binaries/redis/src/src/object.o filter=lfs diff=lfs merge=lfs -text
2730
+ platform/dbops/binaries/redis/src/src/functions.o filter=lfs diff=lfs merge=lfs -text
2731
+ platform/dbops/binaries/redis/src/src/aof.o filter=lfs diff=lfs merge=lfs -text
2732
+ platform/dbops/binaries/redis/src/src/bitops.o filter=lfs diff=lfs merge=lfs -text
2733
+ platform/dbops/binaries/redis/src/src/eval.o filter=lfs diff=lfs merge=lfs -text
2734
+ platform/dbops/binaries/redis/src/src/hyperloglog.o filter=lfs diff=lfs merge=lfs -text
2735
+ platform/dbops/binaries/redis/src/src/script_lua.o filter=lfs diff=lfs merge=lfs -text
2736
+ platform/dbops/binaries/redis/src/src/commands.o filter=lfs diff=lfs merge=lfs -text
2737
+ platform/dbops/binaries/redis/src/src/replication.o filter=lfs diff=lfs merge=lfs -text
2738
+ platform/dbops/binaries/redis/src/src/config.o filter=lfs diff=lfs merge=lfs -text
2739
+ platform/dbops/binaries/redis/src/src/acl.o filter=lfs diff=lfs merge=lfs -text
2740
+ platform/dbops/binaries/redis/src/src/t_zset.o filter=lfs diff=lfs merge=lfs -text
2741
+ platform/dbops/binaries/redis/src/src/redis-benchmark.o filter=lfs diff=lfs merge=lfs -text
2742
+ platform/dbops/binaries/redis/src/src/networking.o filter=lfs diff=lfs merge=lfs -text
2743
+ platform/dbops/binaries/redis/src/src/rdb.o filter=lfs diff=lfs merge=lfs -text
2744
+ platform/dbops/binaries/redis/src/src/t_stream.o filter=lfs diff=lfs merge=lfs -text
2745
+ platform/dbops/binaries/redis/src/src/redis-benchmark filter=lfs diff=lfs merge=lfs -text
2746
+ platform/dbops/binaries/redis/src/src/sentinel.o filter=lfs diff=lfs merge=lfs -text
2747
+ platform/dbops/binaries/redis/src/src/server.o filter=lfs diff=lfs merge=lfs -text
2748
+ platform/dbops/binaries/redis/src/src/cluster.o filter=lfs diff=lfs merge=lfs -text
2749
+ platform/dbops/binaries/redis/src/src/redis-cli.o filter=lfs diff=lfs merge=lfs -text
2750
+ platform/dbops/binaries/redis/src/src/redis-cli filter=lfs diff=lfs merge=lfs -text
2751
+ platform/dbops/binaries/redis/src/src/module.o filter=lfs diff=lfs merge=lfs -text
2752
+ platform/dbops/binaries/redis/src/src/redis-server filter=lfs diff=lfs merge=lfs -text
2753
+ platform/dbops/binaries/redis/src/src/redis-sentinel filter=lfs diff=lfs merge=lfs -text
2754
+ platform/dbops/binaries/redis/src/src/redis-check-rdb filter=lfs diff=lfs merge=lfs -text
2755
+ platform/dbops/binaries/redis/src/src/redis-check-aof filter=lfs diff=lfs merge=lfs -text
2756
+ platform/dbops/binaries/redis/src/deps/hiredis/async.o filter=lfs diff=lfs merge=lfs -text
2757
+ platform/dbops/binaries/redis/src/deps/hiredis/hiredis.o filter=lfs diff=lfs merge=lfs -text
2758
+ platform/dbops/binaries/redis/src/deps/hiredis/sds.o filter=lfs diff=lfs merge=lfs -text
2759
+ platform/dbops/binaries/redis/src/deps/hiredis/libhiredis.a filter=lfs diff=lfs merge=lfs -text
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/class-use/Log.html ADDED
@@ -0,0 +1,248 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Interface org.janusgraph.diskstorage.log.Log (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Interface org.janusgraph.diskstorage.log.Log (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="../package-summary.html">Package</a></li>
37
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Class</a></li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="../package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/class-use/Log.html" target="_top">Frames</a></li>
52
+ <li><a href="Log.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h2 title="Uses of Interface org.janusgraph.diskstorage.log.Log" class="title">Uses of Interface<br>org.janusgraph.diskstorage.log.Log</h2>
75
+ </div>
76
+ <div class="classUseContainer">
77
+ <ul class="blockList">
78
+ <li class="blockList">
79
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
80
+ <caption><span>Packages that use <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></span><span class="tabEnd">&nbsp;</span></caption>
81
+ <tr>
82
+ <th class="colFirst" scope="col">Package</th>
83
+ <th class="colLast" scope="col">Description</th>
84
+ </tr>
85
+ <tbody>
86
+ <tr class="altColor">
87
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage">org.janusgraph.diskstorage</a></td>
88
+ <td class="colLast">&nbsp;</td>
89
+ </tr>
90
+ <tr class="rowColor">
91
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage.log">org.janusgraph.diskstorage.log</a></td>
92
+ <td class="colLast">&nbsp;</td>
93
+ </tr>
94
+ <tr class="altColor">
95
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage.log.kcvs">org.janusgraph.diskstorage.log.kcvs</a></td>
96
+ <td class="colLast">&nbsp;</td>
97
+ </tr>
98
+ <tr class="rowColor">
99
+ <td class="colFirst"><a href="#org.janusgraph.graphdb.database.management">org.janusgraph.graphdb.database.management</a></td>
100
+ <td class="colLast">&nbsp;</td>
101
+ </tr>
102
+ </tbody>
103
+ </table>
104
+ </li>
105
+ <li class="blockList">
106
+ <ul class="blockList">
107
+ <li class="blockList"><a name="org.janusgraph.diskstorage">
108
+ <!-- -->
109
+ </a>
110
+ <h3>Uses of <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a> in <a href="../../../../../org/janusgraph/diskstorage/package-summary.html">org.janusgraph.diskstorage</a></h3>
111
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
112
+ <caption><span>Methods in <a href="../../../../../org/janusgraph/diskstorage/package-summary.html">org.janusgraph.diskstorage</a> that return <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></span><span class="tabEnd">&nbsp;</span></caption>
113
+ <tr>
114
+ <th class="colFirst" scope="col">Modifier and Type</th>
115
+ <th class="colLast" scope="col">Method and Description</th>
116
+ </tr>
117
+ <tbody>
118
+ <tr class="altColor">
119
+ <td class="colFirst"><code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></code></td>
120
+ <td class="colLast"><span class="typeNameLabel">Backend.</span><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/Backend.html#getSystemMgmtLog--">getSystemMgmtLog</a></span>()</code>&nbsp;</td>
121
+ </tr>
122
+ <tr class="rowColor">
123
+ <td class="colFirst"><code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></code></td>
124
+ <td class="colLast"><span class="typeNameLabel">Backend.</span><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/Backend.html#getUserLog-java.lang.String-">getUserLog</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;identifier)</code>&nbsp;</td>
125
+ </tr>
126
+ </tbody>
127
+ </table>
128
+ </li>
129
+ <li class="blockList"><a name="org.janusgraph.diskstorage.log">
130
+ <!-- -->
131
+ </a>
132
+ <h3>Uses of <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a> in <a href="../../../../../org/janusgraph/diskstorage/log/package-summary.html">org.janusgraph.diskstorage.log</a></h3>
133
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
134
+ <caption><span>Methods in <a href="../../../../../org/janusgraph/diskstorage/log/package-summary.html">org.janusgraph.diskstorage.log</a> that return <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></span><span class="tabEnd">&nbsp;</span></caption>
135
+ <tr>
136
+ <th class="colFirst" scope="col">Modifier and Type</th>
137
+ <th class="colLast" scope="col">Method and Description</th>
138
+ </tr>
139
+ <tbody>
140
+ <tr class="altColor">
141
+ <td class="colFirst"><code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></code></td>
142
+ <td class="colLast"><span class="typeNameLabel">LogManager.</span><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html#openLog-java.lang.String-">openLog</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
143
+ <div class="block">Opens a log for the given name.</div>
144
+ </td>
145
+ </tr>
146
+ </tbody>
147
+ </table>
148
+ </li>
149
+ <li class="blockList"><a name="org.janusgraph.diskstorage.log.kcvs">
150
+ <!-- -->
151
+ </a>
152
+ <h3>Uses of <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a> in <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a></h3>
153
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
154
+ <caption><span>Classes in <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a> that implement <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></span><span class="tabEnd">&nbsp;</span></caption>
155
+ <tr>
156
+ <th class="colFirst" scope="col">Modifier and Type</th>
157
+ <th class="colLast" scope="col">Class and Description</th>
158
+ </tr>
159
+ <tbody>
160
+ <tr class="altColor">
161
+ <td class="colFirst"><code>class&nbsp;</code></td>
162
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLog</a></span></code>
163
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> wrapped around a <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStore.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue"><code>KeyColumnValueStore</code></a>.</div>
164
+ </td>
165
+ </tr>
166
+ </tbody>
167
+ </table>
168
+ </li>
169
+ <li class="blockList"><a name="org.janusgraph.graphdb.database.management">
170
+ <!-- -->
171
+ </a>
172
+ <h3>Uses of <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a> in <a href="../../../../../org/janusgraph/graphdb/database/management/package-summary.html">org.janusgraph.graphdb.database.management</a></h3>
173
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
174
+ <caption><span>Constructors in <a href="../../../../../org/janusgraph/graphdb/database/management/package-summary.html">org.janusgraph.graphdb.database.management</a> with parameters of type <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></span><span class="tabEnd">&nbsp;</span></caption>
175
+ <tr>
176
+ <th class="colOne" scope="col">Constructor and Description</th>
177
+ </tr>
178
+ <tbody>
179
+ <tr class="altColor">
180
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/graphdb/database/management/ManagementLogger.html#ManagementLogger-org.janusgraph.graphdb.database.StandardJanusGraph-org.janusgraph.diskstorage.log.Log-org.janusgraph.graphdb.database.cache.SchemaCache-org.janusgraph.diskstorage.util.time.TimestampProvider-">ManagementLogger</a></span>(<a href="../../../../../org/janusgraph/graphdb/database/StandardJanusGraph.html" title="class in org.janusgraph.graphdb.database">StandardJanusGraph</a>&nbsp;graph,
181
+ <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a>&nbsp;sysLog,
182
+ <a href="../../../../../org/janusgraph/graphdb/database/cache/SchemaCache.html" title="interface in org.janusgraph.graphdb.database.cache">SchemaCache</a>&nbsp;schemaCache,
183
+ <a href="../../../../../org/janusgraph/diskstorage/util/time/TimestampProvider.html" title="interface in org.janusgraph.diskstorage.util.time">TimestampProvider</a>&nbsp;times)</code>&nbsp;</td>
184
+ </tr>
185
+ <tr class="rowColor">
186
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/graphdb/database/management/ManagementSystem.html#ManagementSystem-org.janusgraph.graphdb.database.StandardJanusGraph-org.janusgraph.diskstorage.configuration.backend.KCVSConfiguration-org.janusgraph.diskstorage.log.Log-org.janusgraph.graphdb.database.management.ManagementLogger-org.janusgraph.graphdb.database.cache.SchemaCache-">ManagementSystem</a></span>(<a href="../../../../../org/janusgraph/graphdb/database/StandardJanusGraph.html" title="class in org.janusgraph.graphdb.database">StandardJanusGraph</a>&nbsp;graph,
187
+ <a href="../../../../../org/janusgraph/diskstorage/configuration/backend/KCVSConfiguration.html" title="class in org.janusgraph.diskstorage.configuration.backend">KCVSConfiguration</a>&nbsp;config,
188
+ <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a>&nbsp;sysLog,
189
+ <a href="../../../../../org/janusgraph/graphdb/database/management/ManagementLogger.html" title="class in org.janusgraph.graphdb.database.management">ManagementLogger</a>&nbsp;managementLogger,
190
+ <a href="../../../../../org/janusgraph/graphdb/database/cache/SchemaCache.html" title="interface in org.janusgraph.graphdb.database.cache">SchemaCache</a>&nbsp;schemaCache)</code>&nbsp;</td>
191
+ </tr>
192
+ </tbody>
193
+ </table>
194
+ </li>
195
+ </ul>
196
+ </li>
197
+ </ul>
198
+ </div>
199
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
200
+ <div class="bottomNav"><a name="navbar.bottom">
201
+ <!-- -->
202
+ </a>
203
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
204
+ <a name="navbar.bottom.firstrow">
205
+ <!-- -->
206
+ </a>
207
+ <ul class="navList" title="Navigation">
208
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
209
+ <li><a href="../package-summary.html">Package</a></li>
210
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Class</a></li>
211
+ <li class="navBarCell1Rev">Use</li>
212
+ <li><a href="../package-tree.html">Tree</a></li>
213
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
214
+ <li><a href="../../../../../index-all.html">Index</a></li>
215
+ <li><a href="../../../../../help-doc.html">Help</a></li>
216
+ </ul>
217
+ </div>
218
+ <div class="subNav">
219
+ <ul class="navList">
220
+ <li>Prev</li>
221
+ <li>Next</li>
222
+ </ul>
223
+ <ul class="navList">
224
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/class-use/Log.html" target="_top">Frames</a></li>
225
+ <li><a href="Log.html" target="_top">No&nbsp;Frames</a></li>
226
+ </ul>
227
+ <ul class="navList" id="allclasses_navbar_bottom">
228
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
229
+ </ul>
230
+ <div>
231
+ <script type="text/javascript"><!--
232
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
233
+ if(window==top) {
234
+ allClassesLink.style.display = "block";
235
+ }
236
+ else {
237
+ allClassesLink.style.display = "none";
238
+ }
239
+ //-->
240
+ </script>
241
+ </div>
242
+ <a name="skip.navbar.bottom">
243
+ <!-- -->
244
+ </a></div>
245
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
246
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
247
+ </body>
248
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/class-use/Message.html ADDED
@@ -0,0 +1,317 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Interface org.janusgraph.diskstorage.log.Message (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Interface org.janusgraph.diskstorage.log.Message (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="../package-summary.html">Package</a></li>
37
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Class</a></li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="../package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/class-use/Message.html" target="_top">Frames</a></li>
52
+ <li><a href="Message.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h2 title="Uses of Interface org.janusgraph.diskstorage.log.Message" class="title">Uses of Interface<br>org.janusgraph.diskstorage.log.Message</h2>
75
+ </div>
76
+ <div class="classUseContainer">
77
+ <ul class="blockList">
78
+ <li class="blockList">
79
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
80
+ <caption><span>Packages that use <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></span><span class="tabEnd">&nbsp;</span></caption>
81
+ <tr>
82
+ <th class="colFirst" scope="col">Package</th>
83
+ <th class="colLast" scope="col">Description</th>
84
+ </tr>
85
+ <tbody>
86
+ <tr class="altColor">
87
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage.log">org.janusgraph.diskstorage.log</a></td>
88
+ <td class="colLast">&nbsp;</td>
89
+ </tr>
90
+ <tr class="rowColor">
91
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage.log.kcvs">org.janusgraph.diskstorage.log.kcvs</a></td>
92
+ <td class="colLast">&nbsp;</td>
93
+ </tr>
94
+ <tr class="altColor">
95
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage.log.util">org.janusgraph.diskstorage.log.util</a></td>
96
+ <td class="colLast">&nbsp;</td>
97
+ </tr>
98
+ <tr class="rowColor">
99
+ <td class="colFirst"><a href="#org.janusgraph.graphdb.database.management">org.janusgraph.graphdb.database.management</a></td>
100
+ <td class="colLast">&nbsp;</td>
101
+ </tr>
102
+ </tbody>
103
+ </table>
104
+ </li>
105
+ <li class="blockList">
106
+ <ul class="blockList">
107
+ <li class="blockList"><a name="org.janusgraph.diskstorage.log">
108
+ <!-- -->
109
+ </a>
110
+ <h3>Uses of <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a> in <a href="../../../../../org/janusgraph/diskstorage/log/package-summary.html">org.janusgraph.diskstorage.log</a></h3>
111
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
112
+ <caption><span>Methods in <a href="../../../../../org/janusgraph/diskstorage/log/package-summary.html">org.janusgraph.diskstorage.log</a> that return types with arguments of type <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></span><span class="tabEnd">&nbsp;</span></caption>
113
+ <tr>
114
+ <th class="colFirst" scope="col">Modifier and Type</th>
115
+ <th class="colLast" scope="col">Method and Description</th>
116
+ </tr>
117
+ <tbody>
118
+ <tr class="altColor">
119
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</code></td>
120
+ <td class="colLast"><span class="typeNameLabel">Log.</span><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#add-org.janusgraph.diskstorage.StaticBuffer-">add</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content)</code>
121
+ <div class="block">Attempts to add the given content to the log and returns a <a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent"><code>Future</code></a> for this action.</div>
122
+ </td>
123
+ </tr>
124
+ <tr class="rowColor">
125
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</code></td>
126
+ <td class="colLast"><span class="typeNameLabel">Log.</span><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.StaticBuffer-">add</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content,
127
+ <a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key)</code>
128
+ <div class="block">Attempts to add the given content to the log and returns a <a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent"><code>Future</code></a> for this action.</div>
129
+ </td>
130
+ </tr>
131
+ </tbody>
132
+ </table>
133
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
134
+ <caption><span>Methods in <a href="../../../../../org/janusgraph/diskstorage/log/package-summary.html">org.janusgraph.diskstorage.log</a> with parameters of type <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></span><span class="tabEnd">&nbsp;</span></caption>
135
+ <tr>
136
+ <th class="colFirst" scope="col">Modifier and Type</th>
137
+ <th class="colLast" scope="col">Method and Description</th>
138
+ </tr>
139
+ <tbody>
140
+ <tr class="altColor">
141
+ <td class="colFirst"><code>void</code></td>
142
+ <td class="colLast"><span class="typeNameLabel">MessageReader.</span><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html#read-org.janusgraph.diskstorage.log.Message-">read</a></span>(<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&nbsp;message)</code>
143
+ <div class="block">Processes the given message.</div>
144
+ </td>
145
+ </tr>
146
+ </tbody>
147
+ </table>
148
+ </li>
149
+ <li class="blockList"><a name="org.janusgraph.diskstorage.log.kcvs">
150
+ <!-- -->
151
+ </a>
152
+ <h3>Uses of <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a> in <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a></h3>
153
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
154
+ <caption><span>Classes in <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a> that implement <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></span><span class="tabEnd">&nbsp;</span></caption>
155
+ <tr>
156
+ <th class="colFirst" scope="col">Modifier and Type</th>
157
+ <th class="colLast" scope="col">Class and Description</th>
158
+ </tr>
159
+ <tbody>
160
+ <tr class="altColor">
161
+ <td class="colFirst"><code>class&nbsp;</code></td>
162
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSMessage</a></span></code>
163
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util"><code>AbstractMessage</code></a> for <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs"><code>KCVSLog</code></a>.</div>
164
+ </td>
165
+ </tr>
166
+ </tbody>
167
+ </table>
168
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
169
+ <caption><span>Methods in <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a> that return types with arguments of type <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></span><span class="tabEnd">&nbsp;</span></caption>
170
+ <tr>
171
+ <th class="colFirst" scope="col">Modifier and Type</th>
172
+ <th class="colLast" scope="col">Method and Description</th>
173
+ </tr>
174
+ <tbody>
175
+ <tr class="altColor">
176
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</code></td>
177
+ <td class="colLast"><span class="typeNameLabel">KCVSLog.</span><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#add-org.janusgraph.diskstorage.StaticBuffer-">add</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content)</code>
178
+ <div class="block">###################################
179
+ Message Sending
180
+ ###################################</div>
181
+ </td>
182
+ </tr>
183
+ <tr class="rowColor">
184
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</code></td>
185
+ <td class="colLast"><span class="typeNameLabel">KCVSLog.</span><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.StaticBuffer-">add</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content,
186
+ <a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key)</code>&nbsp;</td>
187
+ </tr>
188
+ <tr class="altColor">
189
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</code></td>
190
+ <td class="colLast"><span class="typeNameLabel">KCVSLog.</span><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.log.kcvs.ExternalPersistor-">add</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content,
191
+ <a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key,
192
+ <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a>&nbsp;persistor)</code>&nbsp;</td>
193
+ </tr>
194
+ </tbody>
195
+ </table>
196
+ </li>
197
+ <li class="blockList"><a name="org.janusgraph.diskstorage.log.util">
198
+ <!-- -->
199
+ </a>
200
+ <h3>Uses of <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a> in <a href="../../../../../org/janusgraph/diskstorage/log/util/package-summary.html">org.janusgraph.diskstorage.log.util</a></h3>
201
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
202
+ <caption><span>Classes in <a href="../../../../../org/janusgraph/diskstorage/log/util/package-summary.html">org.janusgraph.diskstorage.log.util</a> with type parameters of type <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></span><span class="tabEnd">&nbsp;</span></caption>
203
+ <tr>
204
+ <th class="colFirst" scope="col">Modifier and Type</th>
205
+ <th class="colLast" scope="col">Class and Description</th>
206
+ </tr>
207
+ <tbody>
208
+ <tr class="altColor">
209
+ <td class="colFirst"><code>class&nbsp;</code></td>
210
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="class in org.janusgraph.diskstorage.log.util">FutureMessage</a>&lt;M extends <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</span></code>
211
+ <div class="block">Implementation of a <a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent"><code>Future</code></a> for <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log"><code>Message</code></a>s that
212
+ are being added to the <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> via <a href="../../../../../org/janusgraph/diskstorage/log/Log.html#add-org.janusgraph.diskstorage.StaticBuffer-"><code>Log.add(org.janusgraph.diskstorage.StaticBuffer)</code></a>.</div>
213
+ </td>
214
+ </tr>
215
+ </tbody>
216
+ </table>
217
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
218
+ <caption><span>Classes in <a href="../../../../../org/janusgraph/diskstorage/log/util/package-summary.html">org.janusgraph.diskstorage.log.util</a> that implement <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></span><span class="tabEnd">&nbsp;</span></caption>
219
+ <tr>
220
+ <th class="colFirst" scope="col">Modifier and Type</th>
221
+ <th class="colLast" scope="col">Class and Description</th>
222
+ </tr>
223
+ <tbody>
224
+ <tr class="altColor">
225
+ <td class="colFirst"><code>class&nbsp;</code></td>
226
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util">AbstractMessage</a></span></code>
227
+ <div class="block">Abstract implementation of <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log"><code>Message</code></a> which exposes the timestamp, sender, and payload
228
+ of a message.</div>
229
+ </td>
230
+ </tr>
231
+ </tbody>
232
+ </table>
233
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
234
+ <caption><span>Constructors in <a href="../../../../../org/janusgraph/diskstorage/log/util/package-summary.html">org.janusgraph.diskstorage.log.util</a> with parameters of type <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></span><span class="tabEnd">&nbsp;</span></caption>
235
+ <tr>
236
+ <th class="colOne" scope="col">Constructor and Description</th>
237
+ </tr>
238
+ <tbody>
239
+ <tr class="altColor">
240
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/ProcessMessageJob.html#ProcessMessageJob-org.janusgraph.diskstorage.log.Message-org.janusgraph.diskstorage.log.MessageReader-">ProcessMessageJob</a></span>(<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&nbsp;message,
241
+ <a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html" title="interface in org.janusgraph.diskstorage.log">MessageReader</a>&nbsp;reader)</code>&nbsp;</td>
242
+ </tr>
243
+ </tbody>
244
+ </table>
245
+ </li>
246
+ <li class="blockList"><a name="org.janusgraph.graphdb.database.management">
247
+ <!-- -->
248
+ </a>
249
+ <h3>Uses of <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a> in <a href="../../../../../org/janusgraph/graphdb/database/management/package-summary.html">org.janusgraph.graphdb.database.management</a></h3>
250
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
251
+ <caption><span>Methods in <a href="../../../../../org/janusgraph/graphdb/database/management/package-summary.html">org.janusgraph.graphdb.database.management</a> with parameters of type <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></span><span class="tabEnd">&nbsp;</span></caption>
252
+ <tr>
253
+ <th class="colFirst" scope="col">Modifier and Type</th>
254
+ <th class="colLast" scope="col">Method and Description</th>
255
+ </tr>
256
+ <tbody>
257
+ <tr class="altColor">
258
+ <td class="colFirst"><code>void</code></td>
259
+ <td class="colLast"><span class="typeNameLabel">ManagementLogger.</span><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/graphdb/database/management/ManagementLogger.html#read-org.janusgraph.diskstorage.log.Message-">read</a></span>(<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&nbsp;message)</code>&nbsp;</td>
260
+ </tr>
261
+ </tbody>
262
+ </table>
263
+ </li>
264
+ </ul>
265
+ </li>
266
+ </ul>
267
+ </div>
268
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
269
+ <div class="bottomNav"><a name="navbar.bottom">
270
+ <!-- -->
271
+ </a>
272
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
273
+ <a name="navbar.bottom.firstrow">
274
+ <!-- -->
275
+ </a>
276
+ <ul class="navList" title="Navigation">
277
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
278
+ <li><a href="../package-summary.html">Package</a></li>
279
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Class</a></li>
280
+ <li class="navBarCell1Rev">Use</li>
281
+ <li><a href="../package-tree.html">Tree</a></li>
282
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
283
+ <li><a href="../../../../../index-all.html">Index</a></li>
284
+ <li><a href="../../../../../help-doc.html">Help</a></li>
285
+ </ul>
286
+ </div>
287
+ <div class="subNav">
288
+ <ul class="navList">
289
+ <li>Prev</li>
290
+ <li>Next</li>
291
+ </ul>
292
+ <ul class="navList">
293
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/class-use/Message.html" target="_top">Frames</a></li>
294
+ <li><a href="Message.html" target="_top">No&nbsp;Frames</a></li>
295
+ </ul>
296
+ <ul class="navList" id="allclasses_navbar_bottom">
297
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
298
+ </ul>
299
+ <div>
300
+ <script type="text/javascript"><!--
301
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
302
+ if(window==top) {
303
+ allClassesLink.style.display = "block";
304
+ }
305
+ else {
306
+ allClassesLink.style.display = "none";
307
+ }
308
+ //-->
309
+ </script>
310
+ </div>
311
+ <a name="skip.navbar.bottom">
312
+ <!-- -->
313
+ </a></div>
314
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
315
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
316
+ </body>
317
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:28 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>ExternalCachePersistor (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="ExternalCachePersistor (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ var methods = {"i0":10};
23
+ var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
24
+ var altColor = "altColor";
25
+ var rowColor = "rowColor";
26
+ var tableTab = "tableTab";
27
+ var activeTableTab = "activeTableTab";
28
+ </script>
29
+ <noscript>
30
+ <div>JavaScript is disabled on your browser.</div>
31
+ </noscript>
32
+ <!-- ========= START OF TOP NAVBAR ======= -->
33
+ <div class="topNav"><a name="navbar.top">
34
+ <!-- -->
35
+ </a>
36
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
37
+ <a name="navbar.top.firstrow">
38
+ <!-- -->
39
+ </a>
40
+ <ul class="navList" title="Navigation">
41
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
42
+ <li><a href="package-summary.html">Package</a></li>
43
+ <li class="navBarCell1Rev">Class</li>
44
+ <li><a href="class-use/ExternalCachePersistor.html">Use</a></li>
45
+ <li><a href="package-tree.html">Tree</a></li>
46
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
47
+ <li><a href="../../../../../index-all.html">Index</a></li>
48
+ <li><a href="../../../../../help-doc.html">Help</a></li>
49
+ </ul>
50
+ </div>
51
+ <div class="subNav">
52
+ <ul class="navList">
53
+ <li>Prev&nbsp;Class</li>
54
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
55
+ </ul>
56
+ <ul class="navList">
57
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" target="_top">Frames</a></li>
58
+ <li><a href="ExternalCachePersistor.html" target="_top">No&nbsp;Frames</a></li>
59
+ </ul>
60
+ <ul class="navList" id="allclasses_navbar_top">
61
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
62
+ </ul>
63
+ <div>
64
+ <script type="text/javascript"><!--
65
+ allClassesLink = document.getElementById("allclasses_navbar_top");
66
+ if(window==top) {
67
+ allClassesLink.style.display = "block";
68
+ }
69
+ else {
70
+ allClassesLink.style.display = "none";
71
+ }
72
+ //-->
73
+ </script>
74
+ </div>
75
+ <div>
76
+ <ul class="subNavList">
77
+ <li>Summary:&nbsp;</li>
78
+ <li>Nested&nbsp;|&nbsp;</li>
79
+ <li>Field&nbsp;|&nbsp;</li>
80
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
81
+ <li><a href="#method.summary">Method</a></li>
82
+ </ul>
83
+ <ul class="subNavList">
84
+ <li>Detail:&nbsp;</li>
85
+ <li>Field&nbsp;|&nbsp;</li>
86
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
87
+ <li><a href="#method.detail">Method</a></li>
88
+ </ul>
89
+ </div>
90
+ <a name="skip.navbar.top">
91
+ <!-- -->
92
+ </a></div>
93
+ <!-- ========= END OF TOP NAVBAR ========= -->
94
+ <!-- ======== START OF CLASS DATA ======== -->
95
+ <div class="header">
96
+ <div class="subTitle">org.janusgraph.diskstorage.log.kcvs</div>
97
+ <h2 title="Class ExternalCachePersistor" class="title">Class ExternalCachePersistor</h2>
98
+ </div>
99
+ <div class="contentContainer">
100
+ <ul class="inheritance">
101
+ <li><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
102
+ <li>
103
+ <ul class="inheritance">
104
+ <li>org.janusgraph.diskstorage.log.kcvs.ExternalCachePersistor</li>
105
+ </ul>
106
+ </li>
107
+ </ul>
108
+ <div class="description">
109
+ <ul class="blockList">
110
+ <li class="blockList">
111
+ <dl>
112
+ <dt>All Implemented Interfaces:</dt>
113
+ <dd><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a></dd>
114
+ </dl>
115
+ <hr>
116
+ <br>
117
+ <pre>public class <span class="typeNameLabel">ExternalCachePersistor</span>
118
+ extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>
119
+ implements <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a></pre>
120
+ <dl>
121
+ <dt><span class="simpleTagLabel">Author:</span></dt>
122
+ <dd>Matthias Broecheler (me@matthiasb.com)</dd>
123
+ </dl>
124
+ </li>
125
+ </ul>
126
+ </div>
127
+ <div class="summary">
128
+ <ul class="blockList">
129
+ <li class="blockList">
130
+ <!-- ======== CONSTRUCTOR SUMMARY ======== -->
131
+ <ul class="blockList">
132
+ <li class="blockList"><a name="constructor.summary">
133
+ <!-- -->
134
+ </a>
135
+ <h3>Constructor Summary</h3>
136
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
137
+ <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
138
+ <tr>
139
+ <th class="colOne" scope="col">Constructor and Description</th>
140
+ </tr>
141
+ <tr class="altColor">
142
+ <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html#ExternalCachePersistor-org.janusgraph.diskstorage.keycolumnvalue.cache.KCVSCache-org.janusgraph.diskstorage.keycolumnvalue.cache.CacheTransaction-">ExternalCachePersistor</a></span>(<a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/cache/KCVSCache.html" title="class in org.janusgraph.diskstorage.keycolumnvalue.cache">KCVSCache</a>&nbsp;kcvs,
143
+ <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/cache/CacheTransaction.html" title="class in org.janusgraph.diskstorage.keycolumnvalue.cache">CacheTransaction</a>&nbsp;tx)</code>&nbsp;</td>
144
+ </tr>
145
+ </table>
146
+ </li>
147
+ </ul>
148
+ <!-- ========== METHOD SUMMARY =========== -->
149
+ <ul class="blockList">
150
+ <li class="blockList"><a name="method.summary">
151
+ <!-- -->
152
+ </a>
153
+ <h3>Method Summary</h3>
154
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
155
+ <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
156
+ <tr>
157
+ <th class="colFirst" scope="col">Modifier and Type</th>
158
+ <th class="colLast" scope="col">Method and Description</th>
159
+ </tr>
160
+ <tr id="i0" class="altColor">
161
+ <td class="colFirst"><code>void</code></td>
162
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html#add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.Entry-">add</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key,
163
+ <a href="../../../../../org/janusgraph/diskstorage/Entry.html" title="interface in org.janusgraph.diskstorage">Entry</a>&nbsp;cell)</code>&nbsp;</td>
164
+ </tr>
165
+ </table>
166
+ <ul class="blockList">
167
+ <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
168
+ <!-- -->
169
+ </a>
170
+ <h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
171
+ <code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
172
+ </ul>
173
+ </li>
174
+ </ul>
175
+ </li>
176
+ </ul>
177
+ </div>
178
+ <div class="details">
179
+ <ul class="blockList">
180
+ <li class="blockList">
181
+ <!-- ========= CONSTRUCTOR DETAIL ======== -->
182
+ <ul class="blockList">
183
+ <li class="blockList"><a name="constructor.detail">
184
+ <!-- -->
185
+ </a>
186
+ <h3>Constructor Detail</h3>
187
+ <a name="ExternalCachePersistor-org.janusgraph.diskstorage.keycolumnvalue.cache.KCVSCache-org.janusgraph.diskstorage.keycolumnvalue.cache.CacheTransaction-">
188
+ <!-- -->
189
+ </a>
190
+ <ul class="blockListLast">
191
+ <li class="blockList">
192
+ <h4>ExternalCachePersistor</h4>
193
+ <pre>public&nbsp;ExternalCachePersistor(<a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/cache/KCVSCache.html" title="class in org.janusgraph.diskstorage.keycolumnvalue.cache">KCVSCache</a>&nbsp;kcvs,
194
+ <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/cache/CacheTransaction.html" title="class in org.janusgraph.diskstorage.keycolumnvalue.cache">CacheTransaction</a>&nbsp;tx)</pre>
195
+ </li>
196
+ </ul>
197
+ </li>
198
+ </ul>
199
+ <!-- ============ METHOD DETAIL ========== -->
200
+ <ul class="blockList">
201
+ <li class="blockList"><a name="method.detail">
202
+ <!-- -->
203
+ </a>
204
+ <h3>Method Detail</h3>
205
+ <a name="add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.Entry-">
206
+ <!-- -->
207
+ </a>
208
+ <ul class="blockListLast">
209
+ <li class="blockList">
210
+ <h4>add</h4>
211
+ <pre>public&nbsp;void&nbsp;add(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key,
212
+ <a href="../../../../../org/janusgraph/diskstorage/Entry.html" title="interface in org.janusgraph.diskstorage">Entry</a>&nbsp;cell)</pre>
213
+ <dl>
214
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
215
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html#add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.Entry-">add</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a></code></dd>
216
+ </dl>
217
+ </li>
218
+ </ul>
219
+ </li>
220
+ </ul>
221
+ </li>
222
+ </ul>
223
+ </div>
224
+ </div>
225
+ <!-- ========= END OF CLASS DATA ========= -->
226
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
227
+ <div class="bottomNav"><a name="navbar.bottom">
228
+ <!-- -->
229
+ </a>
230
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
231
+ <a name="navbar.bottom.firstrow">
232
+ <!-- -->
233
+ </a>
234
+ <ul class="navList" title="Navigation">
235
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
236
+ <li><a href="package-summary.html">Package</a></li>
237
+ <li class="navBarCell1Rev">Class</li>
238
+ <li><a href="class-use/ExternalCachePersistor.html">Use</a></li>
239
+ <li><a href="package-tree.html">Tree</a></li>
240
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
241
+ <li><a href="../../../../../index-all.html">Index</a></li>
242
+ <li><a href="../../../../../help-doc.html">Help</a></li>
243
+ </ul>
244
+ </div>
245
+ <div class="subNav">
246
+ <ul class="navList">
247
+ <li>Prev&nbsp;Class</li>
248
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
249
+ </ul>
250
+ <ul class="navList">
251
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" target="_top">Frames</a></li>
252
+ <li><a href="ExternalCachePersistor.html" target="_top">No&nbsp;Frames</a></li>
253
+ </ul>
254
+ <ul class="navList" id="allclasses_navbar_bottom">
255
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
256
+ </ul>
257
+ <div>
258
+ <script type="text/javascript"><!--
259
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
260
+ if(window==top) {
261
+ allClassesLink.style.display = "block";
262
+ }
263
+ else {
264
+ allClassesLink.style.display = "none";
265
+ }
266
+ //-->
267
+ </script>
268
+ </div>
269
+ <div>
270
+ <ul class="subNavList">
271
+ <li>Summary:&nbsp;</li>
272
+ <li>Nested&nbsp;|&nbsp;</li>
273
+ <li>Field&nbsp;|&nbsp;</li>
274
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
275
+ <li><a href="#method.summary">Method</a></li>
276
+ </ul>
277
+ <ul class="subNavList">
278
+ <li>Detail:&nbsp;</li>
279
+ <li>Field&nbsp;|&nbsp;</li>
280
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
281
+ <li><a href="#method.detail">Method</a></li>
282
+ </ul>
283
+ </div>
284
+ <a name="skip.navbar.bottom">
285
+ <!-- -->
286
+ </a></div>
287
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
288
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
289
+ </body>
290
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:28 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>ExternalPersistor (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="ExternalPersistor (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ var methods = {"i0":6};
23
+ var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
24
+ var altColor = "altColor";
25
+ var rowColor = "rowColor";
26
+ var tableTab = "tableTab";
27
+ var activeTableTab = "activeTableTab";
28
+ </script>
29
+ <noscript>
30
+ <div>JavaScript is disabled on your browser.</div>
31
+ </noscript>
32
+ <!-- ========= START OF TOP NAVBAR ======= -->
33
+ <div class="topNav"><a name="navbar.top">
34
+ <!-- -->
35
+ </a>
36
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
37
+ <a name="navbar.top.firstrow">
38
+ <!-- -->
39
+ </a>
40
+ <ul class="navList" title="Navigation">
41
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
42
+ <li><a href="package-summary.html">Package</a></li>
43
+ <li class="navBarCell1Rev">Class</li>
44
+ <li><a href="class-use/ExternalPersistor.html">Use</a></li>
45
+ <li><a href="package-tree.html">Tree</a></li>
46
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
47
+ <li><a href="../../../../../index-all.html">Index</a></li>
48
+ <li><a href="../../../../../help-doc.html">Help</a></li>
49
+ </ul>
50
+ </div>
51
+ <div class="subNav">
52
+ <ul class="navList">
53
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
54
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
55
+ </ul>
56
+ <ul class="navList">
57
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" target="_top">Frames</a></li>
58
+ <li><a href="ExternalPersistor.html" target="_top">No&nbsp;Frames</a></li>
59
+ </ul>
60
+ <ul class="navList" id="allclasses_navbar_top">
61
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
62
+ </ul>
63
+ <div>
64
+ <script type="text/javascript"><!--
65
+ allClassesLink = document.getElementById("allclasses_navbar_top");
66
+ if(window==top) {
67
+ allClassesLink.style.display = "block";
68
+ }
69
+ else {
70
+ allClassesLink.style.display = "none";
71
+ }
72
+ //-->
73
+ </script>
74
+ </div>
75
+ <div>
76
+ <ul class="subNavList">
77
+ <li>Summary:&nbsp;</li>
78
+ <li>Nested&nbsp;|&nbsp;</li>
79
+ <li>Field&nbsp;|&nbsp;</li>
80
+ <li>Constr&nbsp;|&nbsp;</li>
81
+ <li><a href="#method.summary">Method</a></li>
82
+ </ul>
83
+ <ul class="subNavList">
84
+ <li>Detail:&nbsp;</li>
85
+ <li>Field&nbsp;|&nbsp;</li>
86
+ <li>Constr&nbsp;|&nbsp;</li>
87
+ <li><a href="#method.detail">Method</a></li>
88
+ </ul>
89
+ </div>
90
+ <a name="skip.navbar.top">
91
+ <!-- -->
92
+ </a></div>
93
+ <!-- ========= END OF TOP NAVBAR ========= -->
94
+ <!-- ======== START OF CLASS DATA ======== -->
95
+ <div class="header">
96
+ <div class="subTitle">org.janusgraph.diskstorage.log.kcvs</div>
97
+ <h2 title="Interface ExternalPersistor" class="title">Interface ExternalPersistor</h2>
98
+ </div>
99
+ <div class="contentContainer">
100
+ <div class="description">
101
+ <ul class="blockList">
102
+ <li class="blockList">
103
+ <dl>
104
+ <dt>All Known Implementing Classes:</dt>
105
+ <dd><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs">ExternalCachePersistor</a></dd>
106
+ </dl>
107
+ <hr>
108
+ <br>
109
+ <pre>public interface <span class="typeNameLabel">ExternalPersistor</span></pre>
110
+ <dl>
111
+ <dt><span class="simpleTagLabel">Author:</span></dt>
112
+ <dd>Matthias Broecheler (me@matthiasb.com)</dd>
113
+ </dl>
114
+ </li>
115
+ </ul>
116
+ </div>
117
+ <div class="summary">
118
+ <ul class="blockList">
119
+ <li class="blockList">
120
+ <!-- ========== METHOD SUMMARY =========== -->
121
+ <ul class="blockList">
122
+ <li class="blockList"><a name="method.summary">
123
+ <!-- -->
124
+ </a>
125
+ <h3>Method Summary</h3>
126
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
127
+ <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
128
+ <tr>
129
+ <th class="colFirst" scope="col">Modifier and Type</th>
130
+ <th class="colLast" scope="col">Method and Description</th>
131
+ </tr>
132
+ <tr id="i0" class="altColor">
133
+ <td class="colFirst"><code>void</code></td>
134
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html#add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.Entry-">add</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key,
135
+ <a href="../../../../../org/janusgraph/diskstorage/Entry.html" title="interface in org.janusgraph.diskstorage">Entry</a>&nbsp;cell)</code>&nbsp;</td>
136
+ </tr>
137
+ </table>
138
+ </li>
139
+ </ul>
140
+ </li>
141
+ </ul>
142
+ </div>
143
+ <div class="details">
144
+ <ul class="blockList">
145
+ <li class="blockList">
146
+ <!-- ============ METHOD DETAIL ========== -->
147
+ <ul class="blockList">
148
+ <li class="blockList"><a name="method.detail">
149
+ <!-- -->
150
+ </a>
151
+ <h3>Method Detail</h3>
152
+ <a name="add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.Entry-">
153
+ <!-- -->
154
+ </a>
155
+ <ul class="blockListLast">
156
+ <li class="blockList">
157
+ <h4>add</h4>
158
+ <pre>void&nbsp;add(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key,
159
+ <a href="../../../../../org/janusgraph/diskstorage/Entry.html" title="interface in org.janusgraph.diskstorage">Entry</a>&nbsp;cell)</pre>
160
+ </li>
161
+ </ul>
162
+ </li>
163
+ </ul>
164
+ </li>
165
+ </ul>
166
+ </div>
167
+ </div>
168
+ <!-- ========= END OF CLASS DATA ========= -->
169
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
170
+ <div class="bottomNav"><a name="navbar.bottom">
171
+ <!-- -->
172
+ </a>
173
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
174
+ <a name="navbar.bottom.firstrow">
175
+ <!-- -->
176
+ </a>
177
+ <ul class="navList" title="Navigation">
178
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
179
+ <li><a href="package-summary.html">Package</a></li>
180
+ <li class="navBarCell1Rev">Class</li>
181
+ <li><a href="class-use/ExternalPersistor.html">Use</a></li>
182
+ <li><a href="package-tree.html">Tree</a></li>
183
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
184
+ <li><a href="../../../../../index-all.html">Index</a></li>
185
+ <li><a href="../../../../../help-doc.html">Help</a></li>
186
+ </ul>
187
+ </div>
188
+ <div class="subNav">
189
+ <ul class="navList">
190
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
191
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
192
+ </ul>
193
+ <ul class="navList">
194
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" target="_top">Frames</a></li>
195
+ <li><a href="ExternalPersistor.html" target="_top">No&nbsp;Frames</a></li>
196
+ </ul>
197
+ <ul class="navList" id="allclasses_navbar_bottom">
198
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
199
+ </ul>
200
+ <div>
201
+ <script type="text/javascript"><!--
202
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
203
+ if(window==top) {
204
+ allClassesLink.style.display = "block";
205
+ }
206
+ else {
207
+ allClassesLink.style.display = "none";
208
+ }
209
+ //-->
210
+ </script>
211
+ </div>
212
+ <div>
213
+ <ul class="subNavList">
214
+ <li>Summary:&nbsp;</li>
215
+ <li>Nested&nbsp;|&nbsp;</li>
216
+ <li>Field&nbsp;|&nbsp;</li>
217
+ <li>Constr&nbsp;|&nbsp;</li>
218
+ <li><a href="#method.summary">Method</a></li>
219
+ </ul>
220
+ <ul class="subNavList">
221
+ <li>Detail:&nbsp;</li>
222
+ <li>Field&nbsp;|&nbsp;</li>
223
+ <li>Constr&nbsp;|&nbsp;</li>
224
+ <li><a href="#method.detail">Method</a></li>
225
+ </ul>
226
+ </div>
227
+ <a name="skip.navbar.bottom">
228
+ <!-- -->
229
+ </a></div>
230
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
231
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
232
+ </body>
233
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/KCVSLog.html ADDED
@@ -0,0 +1,625 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:28 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>KCVSLog (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="KCVSLog (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
23
+ var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
24
+ var altColor = "altColor";
25
+ var rowColor = "rowColor";
26
+ var tableTab = "tableTab";
27
+ var activeTableTab = "activeTableTab";
28
+ </script>
29
+ <noscript>
30
+ <div>JavaScript is disabled on your browser.</div>
31
+ </noscript>
32
+ <!-- ========= START OF TOP NAVBAR ======= -->
33
+ <div class="topNav"><a name="navbar.top">
34
+ <!-- -->
35
+ </a>
36
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
37
+ <a name="navbar.top.firstrow">
38
+ <!-- -->
39
+ </a>
40
+ <ul class="navList" title="Navigation">
41
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
42
+ <li><a href="package-summary.html">Package</a></li>
43
+ <li class="navBarCell1Rev">Class</li>
44
+ <li><a href="class-use/KCVSLog.html">Use</a></li>
45
+ <li><a href="package-tree.html">Tree</a></li>
46
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
47
+ <li><a href="../../../../../index-all.html">Index</a></li>
48
+ <li><a href="../../../../../help-doc.html">Help</a></li>
49
+ </ul>
50
+ </div>
51
+ <div class="subNav">
52
+ <ul class="navList">
53
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
54
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
55
+ </ul>
56
+ <ul class="navList">
57
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" target="_top">Frames</a></li>
58
+ <li><a href="KCVSLog.html" target="_top">No&nbsp;Frames</a></li>
59
+ </ul>
60
+ <ul class="navList" id="allclasses_navbar_top">
61
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
62
+ </ul>
63
+ <div>
64
+ <script type="text/javascript"><!--
65
+ allClassesLink = document.getElementById("allclasses_navbar_top");
66
+ if(window==top) {
67
+ allClassesLink.style.display = "block";
68
+ }
69
+ else {
70
+ allClassesLink.style.display = "none";
71
+ }
72
+ //-->
73
+ </script>
74
+ </div>
75
+ <div>
76
+ <ul class="subNavList">
77
+ <li>Summary:&nbsp;</li>
78
+ <li>Nested&nbsp;|&nbsp;</li>
79
+ <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
80
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
81
+ <li><a href="#method.summary">Method</a></li>
82
+ </ul>
83
+ <ul class="subNavList">
84
+ <li>Detail:&nbsp;</li>
85
+ <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
86
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
87
+ <li><a href="#method.detail">Method</a></li>
88
+ </ul>
89
+ </div>
90
+ <a name="skip.navbar.top">
91
+ <!-- -->
92
+ </a></div>
93
+ <!-- ========= END OF TOP NAVBAR ========= -->
94
+ <!-- ======== START OF CLASS DATA ======== -->
95
+ <div class="header">
96
+ <div class="subTitle">org.janusgraph.diskstorage.log.kcvs</div>
97
+ <h2 title="Class KCVSLog" class="title">Class KCVSLog</h2>
98
+ </div>
99
+ <div class="contentContainer">
100
+ <ul class="inheritance">
101
+ <li><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
102
+ <li>
103
+ <ul class="inheritance">
104
+ <li>org.janusgraph.diskstorage.log.kcvs.KCVSLog</li>
105
+ </ul>
106
+ </li>
107
+ </ul>
108
+ <div class="description">
109
+ <ul class="blockList">
110
+ <li class="blockList">
111
+ <dl>
112
+ <dt>All Implemented Interfaces:</dt>
113
+ <dd><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a>, <a href="../../../../../org/janusgraph/diskstorage/util/BackendOperation.TransactionalProvider.html" title="interface in org.janusgraph.diskstorage.util">BackendOperation.TransactionalProvider</a></dd>
114
+ </dl>
115
+ <hr>
116
+ <br>
117
+ <pre>public class <span class="typeNameLabel">KCVSLog</span>
118
+ extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>
119
+ implements <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a>, <a href="../../../../../org/janusgraph/diskstorage/util/BackendOperation.TransactionalProvider.html" title="interface in org.janusgraph.diskstorage.util">BackendOperation.TransactionalProvider</a></pre>
120
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> wrapped around a <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStore.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue"><code>KeyColumnValueStore</code></a>. Each message is written as a column-value pair (<a href="../../../../../org/janusgraph/diskstorage/Entry.html" title="interface in org.janusgraph.diskstorage"><code>Entry</code></a>)
121
+ into a timeslice slot. A timeslice slot is uniquely identified by:
122
+ <ul>
123
+ <li>The partition id: On storage backends that are key-ordered, a partition bit width can be configured which configures the number of
124
+ first bits that comprise the partition id. On unordered storage backends, this is always 0</li>
125
+ <li>A bucket id: The number of parallel buckets that should be maintained is configured by
126
+ <a href="../../../../../org/janusgraph/graphdb/configuration/GraphDatabaseConfiguration.html#LOG_NUM_BUCKETS"><code>GraphDatabaseConfiguration.LOG_NUM_BUCKETS</code></a>. Messages are written to the buckets
127
+ in round-robin fashion and each bucket is identified by a bucket id.
128
+ Having multiple buckets per timeslice allows for load balancing across multiple keys in the storage backend.</li>
129
+ <li>The start time of the timeslice: Each time slice is <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#TIMESLICE_INTERVAL"><code>TIMESLICE_INTERVAL</code></a> microseconds long. And all messages that are added between
130
+ start-time and start-time+<a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#TIMESLICE_INTERVAL"><code>TIMESLICE_INTERVAL</code></a> end up in the same timeslice. For high throughput logs that might be more messages
131
+ than the underlying storage backend can handle per key. In that case, ensure that (2^(partition-bit-width) x (num-buckets) is large enough
132
+ to distribute the load.</li>
133
+ </ul>
134
+
135
+ Each message is uniquely identified by its timestamp, sender id (which uniquely identifies a particular instance of <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs"><code>KCVSLogManager</code></a>), and the
136
+ message id (which is auto-incrementing). These three data points comprise the column of a log message. The actual content of the message
137
+ is written into the value.
138
+ <p>
139
+ When <a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html" title="interface in org.janusgraph.diskstorage.log"><code>MessageReader</code></a> are registered, one reader thread per partition id and bucket is created which periodically (as configured) checks for
140
+ new messages in the storage backend and invokes the reader. <br>
141
+ Read-markers are maintained (for each partition-id &amp; bucket id combination) under a dedicated key in the same <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStoreManager.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue"><code>KeyColumnValueStoreManager</code></a> as the
142
+ log messages. The read markers are updated to the current position before each new iteration of reading messages from the log. If the system fails
143
+ while reading a batch of messages, a subsequently restarted log reader may therefore read messages twice. Hence, <a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html" title="interface in org.janusgraph.diskstorage.log"><code>MessageReader</code></a> implementations
144
+ should exhibit correct behavior for the (rare) circumstance that messages are read twice.
145
+
146
+ Note: All time values in this class are in microseconds. Hence, there are many cases where milliseconds are converted to microseconds.</div>
147
+ <dl>
148
+ <dt><span class="simpleTagLabel">Author:</span></dt>
149
+ <dd>Matthias Broecheler (me@matthiasb.com)</dd>
150
+ </dl>
151
+ </li>
152
+ </ul>
153
+ </div>
154
+ <div class="summary">
155
+ <ul class="blockList">
156
+ <li class="blockList">
157
+ <!-- =========== FIELD SUMMARY =========== -->
158
+ <ul class="blockList">
159
+ <li class="blockList"><a name="field.summary">
160
+ <!-- -->
161
+ </a>
162
+ <h3>Field Summary</h3>
163
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
164
+ <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
165
+ <tr>
166
+ <th class="colFirst" scope="col">Modifier and Type</th>
167
+ <th class="colLast" scope="col">Field and Description</th>
168
+ </tr>
169
+ <tr class="altColor">
170
+ <td class="colFirst"><code>static <a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&gt;</code></td>
171
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#LOG_KEY_CONSISTENT">LOG_KEY_CONSISTENT</a></span></code>&nbsp;</td>
172
+ </tr>
173
+ <tr class="rowColor">
174
+ <td class="colFirst"><code>static <a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html?is-external=true" title="class or interface in java.time">Duration</a>&gt;</code></td>
175
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#LOG_MAX_READ_TIME">LOG_MAX_READ_TIME</a></span></code>&nbsp;</td>
176
+ </tr>
177
+ <tr class="altColor">
178
+ <td class="colFirst"><code>static <a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html?is-external=true" title="class or interface in java.time">Duration</a>&gt;</code></td>
179
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#LOG_MAX_WRITE_TIME">LOG_MAX_WRITE_TIME</a></span></code>&nbsp;</td>
180
+ </tr>
181
+ <tr class="rowColor">
182
+ <td class="colFirst"><code>static <a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html?is-external=true" title="class or interface in java.time">Duration</a>&gt;</code></td>
183
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#LOG_READ_LAG_TIME">LOG_READ_LAG_TIME</a></span></code>&nbsp;</td>
184
+ </tr>
185
+ <tr class="altColor">
186
+ <td class="colFirst"><code>static long</code></td>
187
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#TIMESLICE_INTERVAL">TIMESLICE_INTERVAL</a></span></code>
188
+ <div class="block">The time period that is stored under one key in the underlying KCVS.</div>
189
+ </td>
190
+ </tr>
191
+ </table>
192
+ </li>
193
+ </ul>
194
+ <!-- ======== CONSTRUCTOR SUMMARY ======== -->
195
+ <ul class="blockList">
196
+ <li class="blockList"><a name="constructor.summary">
197
+ <!-- -->
198
+ </a>
199
+ <h3>Constructor Summary</h3>
200
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
201
+ <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
202
+ <tr>
203
+ <th class="colOne" scope="col">Constructor and Description</th>
204
+ </tr>
205
+ <tr class="altColor">
206
+ <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#KCVSLog-java.lang.String-org.janusgraph.diskstorage.log.kcvs.KCVSLogManager-org.janusgraph.diskstorage.keycolumnvalue.KeyColumnValueStore-org.janusgraph.diskstorage.configuration.Configuration-">KCVSLog</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name,
207
+ <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLogManager</a>&nbsp;manager,
208
+ <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStore.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue">KeyColumnValueStore</a>&nbsp;store,
209
+ <a href="../../../../../org/janusgraph/diskstorage/configuration/Configuration.html" title="interface in org.janusgraph.diskstorage.configuration">Configuration</a>&nbsp;config)</code>&nbsp;</td>
210
+ </tr>
211
+ </table>
212
+ </li>
213
+ </ul>
214
+ <!-- ========== METHOD SUMMARY =========== -->
215
+ <ul class="blockList">
216
+ <li class="blockList"><a name="method.summary">
217
+ <!-- -->
218
+ </a>
219
+ <h3>Method Summary</h3>
220
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
221
+ <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
222
+ <tr>
223
+ <th class="colFirst" scope="col">Modifier and Type</th>
224
+ <th class="colLast" scope="col">Method and Description</th>
225
+ </tr>
226
+ <tr id="i0" class="altColor">
227
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</code></td>
228
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#add-org.janusgraph.diskstorage.StaticBuffer-">add</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content)</code>
229
+ <div class="block">###################################
230
+ Message Sending
231
+ ###################################</div>
232
+ </td>
233
+ </tr>
234
+ <tr id="i1" class="rowColor">
235
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</code></td>
236
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.StaticBuffer-">add</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content,
237
+ <a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key)</code>
238
+ <div class="block">Attempts to add the given content to the log and returns a <a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent"><code>Future</code></a> for this action.</div>
239
+ </td>
240
+ </tr>
241
+ <tr id="i2" class="altColor">
242
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</code></td>
243
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.log.kcvs.ExternalPersistor-">add</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content,
244
+ <a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key,
245
+ <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a>&nbsp;persistor)</code>&nbsp;</td>
246
+ </tr>
247
+ <tr id="i3" class="rowColor">
248
+ <td class="colFirst"><code>void</code></td>
249
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#close--">close</a></span>()</code>
250
+ <div class="block">Closes the log by terminating all threads and waiting for their termination.</div>
251
+ </td>
252
+ </tr>
253
+ <tr id="i4" class="altColor">
254
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
255
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#getName--">getName</a></span>()</code>
256
+ <div class="block">Returns the name of this log</div>
257
+ </td>
258
+ </tr>
259
+ <tr id="i5" class="rowColor">
260
+ <td class="colFirst"><code><a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/StoreTransaction.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue">StoreTransaction</a></code></td>
261
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#openTx--">openTx</a></span>()</code>&nbsp;</td>
262
+ </tr>
263
+ <tr id="i6" class="altColor">
264
+ <td class="colFirst"><code>void</code></td>
265
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#registerReader-org.janusgraph.diskstorage.log.ReadMarker-org.janusgraph.diskstorage.log.MessageReader...-">registerReader</a></span>(<a href="../../../../../org/janusgraph/diskstorage/log/ReadMarker.html" title="class in org.janusgraph.diskstorage.log">ReadMarker</a>&nbsp;readMarker,
266
+ <a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html" title="interface in org.janusgraph.diskstorage.log">MessageReader</a>...&nbsp;reader)</code>
267
+ <div class="block">###################################
268
+ Message Reading
269
+ ###################################</div>
270
+ </td>
271
+ </tr>
272
+ <tr id="i7" class="rowColor">
273
+ <td class="colFirst"><code>void</code></td>
274
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#registerReaders-org.janusgraph.diskstorage.log.ReadMarker-java.lang.Iterable-">registerReaders</a></span>(<a href="../../../../../org/janusgraph/diskstorage/log/ReadMarker.html" title="class in org.janusgraph.diskstorage.log">ReadMarker</a>&nbsp;readMarker,
275
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html" title="interface in org.janusgraph.diskstorage.log">MessageReader</a>&gt;&nbsp;readers)</code>
276
+ <div class="block">Registers the given readers with this log.</div>
277
+ </td>
278
+ </tr>
279
+ <tr id="i8" class="altColor">
280
+ <td class="colFirst"><code>boolean</code></td>
281
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#unregisterReader-org.janusgraph.diskstorage.log.MessageReader-">unregisterReader</a></span>(<a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html" title="interface in org.janusgraph.diskstorage.log">MessageReader</a>&nbsp;reader)</code>
282
+ <div class="block">Removes the given reader from the list of registered readers and returns whether this reader was registered in the
283
+ first place.</div>
284
+ </td>
285
+ </tr>
286
+ </table>
287
+ <ul class="blockList">
288
+ <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
289
+ <!-- -->
290
+ </a>
291
+ <h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
292
+ <code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
293
+ </ul>
294
+ </li>
295
+ </ul>
296
+ </li>
297
+ </ul>
298
+ </div>
299
+ <div class="details">
300
+ <ul class="blockList">
301
+ <li class="blockList">
302
+ <!-- ============ FIELD DETAIL =========== -->
303
+ <ul class="blockList">
304
+ <li class="blockList"><a name="field.detail">
305
+ <!-- -->
306
+ </a>
307
+ <h3>Field Detail</h3>
308
+ <a name="LOG_MAX_WRITE_TIME">
309
+ <!-- -->
310
+ </a>
311
+ <ul class="blockList">
312
+ <li class="blockList">
313
+ <h4>LOG_MAX_WRITE_TIME</h4>
314
+ <pre>public static final&nbsp;<a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html?is-external=true" title="class or interface in java.time">Duration</a>&gt; LOG_MAX_WRITE_TIME</pre>
315
+ </li>
316
+ </ul>
317
+ <a name="LOG_MAX_READ_TIME">
318
+ <!-- -->
319
+ </a>
320
+ <ul class="blockList">
321
+ <li class="blockList">
322
+ <h4>LOG_MAX_READ_TIME</h4>
323
+ <pre>public static final&nbsp;<a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html?is-external=true" title="class or interface in java.time">Duration</a>&gt; LOG_MAX_READ_TIME</pre>
324
+ </li>
325
+ </ul>
326
+ <a name="LOG_READ_LAG_TIME">
327
+ <!-- -->
328
+ </a>
329
+ <ul class="blockList">
330
+ <li class="blockList">
331
+ <h4>LOG_READ_LAG_TIME</h4>
332
+ <pre>public static final&nbsp;<a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html?is-external=true" title="class or interface in java.time">Duration</a>&gt; LOG_READ_LAG_TIME</pre>
333
+ </li>
334
+ </ul>
335
+ <a name="LOG_KEY_CONSISTENT">
336
+ <!-- -->
337
+ </a>
338
+ <ul class="blockList">
339
+ <li class="blockList">
340
+ <h4>LOG_KEY_CONSISTENT</h4>
341
+ <pre>public static final&nbsp;<a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&gt; LOG_KEY_CONSISTENT</pre>
342
+ </li>
343
+ </ul>
344
+ <a name="TIMESLICE_INTERVAL">
345
+ <!-- -->
346
+ </a>
347
+ <ul class="blockListLast">
348
+ <li class="blockList">
349
+ <h4>TIMESLICE_INTERVAL</h4>
350
+ <pre>public static final&nbsp;long TIMESLICE_INTERVAL</pre>
351
+ <div class="block">The time period that is stored under one key in the underlying KCVS.
352
+ This value should NEVER be changed since this will cause backwards incompatibility.
353
+ This setting is not configurable. If too many messages end up under one key, please
354
+ configure either 1) the number of buckets or 2) introduce partitioning.</div>
355
+ <dl>
356
+ <dt><span class="seeLabel">See Also:</span></dt>
357
+ <dd><a href="../../../../../constant-values.html#org.janusgraph.diskstorage.log.kcvs.KCVSLog.TIMESLICE_INTERVAL">Constant Field Values</a></dd>
358
+ </dl>
359
+ </li>
360
+ </ul>
361
+ </li>
362
+ </ul>
363
+ <!-- ========= CONSTRUCTOR DETAIL ======== -->
364
+ <ul class="blockList">
365
+ <li class="blockList"><a name="constructor.detail">
366
+ <!-- -->
367
+ </a>
368
+ <h3>Constructor Detail</h3>
369
+ <a name="KCVSLog-java.lang.String-org.janusgraph.diskstorage.log.kcvs.KCVSLogManager-org.janusgraph.diskstorage.keycolumnvalue.KeyColumnValueStore-org.janusgraph.diskstorage.configuration.Configuration-">
370
+ <!-- -->
371
+ </a>
372
+ <ul class="blockListLast">
373
+ <li class="blockList">
374
+ <h4>KCVSLog</h4>
375
+ <pre>public&nbsp;KCVSLog(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name,
376
+ <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLogManager</a>&nbsp;manager,
377
+ <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStore.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue">KeyColumnValueStore</a>&nbsp;store,
378
+ <a href="../../../../../org/janusgraph/diskstorage/configuration/Configuration.html" title="interface in org.janusgraph.diskstorage.configuration">Configuration</a>&nbsp;config)</pre>
379
+ </li>
380
+ </ul>
381
+ </li>
382
+ </ul>
383
+ <!-- ============ METHOD DETAIL ========== -->
384
+ <ul class="blockList">
385
+ <li class="blockList"><a name="method.detail">
386
+ <!-- -->
387
+ </a>
388
+ <h3>Method Detail</h3>
389
+ <a name="getName--">
390
+ <!-- -->
391
+ </a>
392
+ <ul class="blockList">
393
+ <li class="blockList">
394
+ <h4>getName</h4>
395
+ <pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getName()</pre>
396
+ <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#getName--">Log</a></code></span></div>
397
+ <div class="block">Returns the name of this log</div>
398
+ <dl>
399
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
400
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#getName--">getName</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></code></dd>
401
+ <dt><span class="returnLabel">Returns:</span></dt>
402
+ </dl>
403
+ </li>
404
+ </ul>
405
+ <a name="close--">
406
+ <!-- -->
407
+ </a>
408
+ <ul class="blockList">
409
+ <li class="blockList">
410
+ <h4>close</h4>
411
+ <pre>public&nbsp;void&nbsp;close()
412
+ throws <a href="../../../../../org/janusgraph/diskstorage/BackendException.html" title="class in org.janusgraph.diskstorage">BackendException</a></pre>
413
+ <div class="block">Closes the log by terminating all threads and waiting for their termination.</div>
414
+ <dl>
415
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
416
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#close--">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></code></dd>
417
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
418
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/util/BackendOperation.TransactionalProvider.html#close--">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/util/BackendOperation.TransactionalProvider.html" title="interface in org.janusgraph.diskstorage.util">BackendOperation.TransactionalProvider</a></code></dd>
419
+ <dt><span class="throwsLabel">Throws:</span></dt>
420
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/BackendException.html" title="class in org.janusgraph.diskstorage">BackendException</a></code></dd>
421
+ </dl>
422
+ </li>
423
+ </ul>
424
+ <a name="openTx--">
425
+ <!-- -->
426
+ </a>
427
+ <ul class="blockList">
428
+ <li class="blockList">
429
+ <h4>openTx</h4>
430
+ <pre>public&nbsp;<a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/StoreTransaction.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue">StoreTransaction</a>&nbsp;openTx()
431
+ throws <a href="../../../../../org/janusgraph/diskstorage/BackendException.html" title="class in org.janusgraph.diskstorage">BackendException</a></pre>
432
+ <dl>
433
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
434
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/util/BackendOperation.TransactionalProvider.html#openTx--">openTx</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/util/BackendOperation.TransactionalProvider.html" title="interface in org.janusgraph.diskstorage.util">BackendOperation.TransactionalProvider</a></code></dd>
435
+ <dt><span class="throwsLabel">Throws:</span></dt>
436
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/BackendException.html" title="class in org.janusgraph.diskstorage">BackendException</a></code></dd>
437
+ </dl>
438
+ </li>
439
+ </ul>
440
+ <a name="add-org.janusgraph.diskstorage.StaticBuffer-">
441
+ <!-- -->
442
+ </a>
443
+ <ul class="blockList">
444
+ <li class="blockList">
445
+ <h4>add</h4>
446
+ <pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;&nbsp;add(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content)</pre>
447
+ <div class="block">###################################
448
+ Message Sending
449
+ ###################################</div>
450
+ <dl>
451
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
452
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#add-org.janusgraph.diskstorage.StaticBuffer-">add</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></code></dd>
453
+ <dt><span class="returnLabel">Returns:</span></dt>
454
+ </dl>
455
+ </li>
456
+ </ul>
457
+ <a name="add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.StaticBuffer-">
458
+ <!-- -->
459
+ </a>
460
+ <ul class="blockList">
461
+ <li class="blockList">
462
+ <h4>add</h4>
463
+ <pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;&nbsp;add(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content,
464
+ <a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key)</pre>
465
+ <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.StaticBuffer-">Log</a></code></span></div>
466
+ <div class="block">Attempts to add the given content to the log and returns a <a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent"><code>Future</code></a> for this action.
467
+ In addition, a key is provided to signal the recipient of the log message in partitioned logging systems.
468
+ <p>
469
+ If the log is configured for immediate sending, then any exception encountered during this process is thrown
470
+ by this method. Otherwise, encountered exceptions are attached to the returned future.</div>
471
+ <dl>
472
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
473
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.StaticBuffer-">add</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></code></dd>
474
+ <dt><span class="returnLabel">Returns:</span></dt>
475
+ </dl>
476
+ </li>
477
+ </ul>
478
+ <a name="add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.log.kcvs.ExternalPersistor-">
479
+ <!-- -->
480
+ </a>
481
+ <ul class="blockList">
482
+ <li class="blockList">
483
+ <h4>add</h4>
484
+ <pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;&nbsp;add(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content,
485
+ <a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key,
486
+ <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a>&nbsp;persistor)</pre>
487
+ </li>
488
+ </ul>
489
+ <a name="registerReader-org.janusgraph.diskstorage.log.ReadMarker-org.janusgraph.diskstorage.log.MessageReader...-">
490
+ <!-- -->
491
+ </a>
492
+ <ul class="blockList">
493
+ <li class="blockList">
494
+ <h4>registerReader</h4>
495
+ <pre>public&nbsp;void&nbsp;registerReader(<a href="../../../../../org/janusgraph/diskstorage/log/ReadMarker.html" title="class in org.janusgraph.diskstorage.log">ReadMarker</a>&nbsp;readMarker,
496
+ <a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html" title="interface in org.janusgraph.diskstorage.log">MessageReader</a>...&nbsp;reader)</pre>
497
+ <div class="block">###################################
498
+ Message Reading
499
+ ###################################</div>
500
+ <dl>
501
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
502
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#registerReader-org.janusgraph.diskstorage.log.ReadMarker-org.janusgraph.diskstorage.log.MessageReader...-">registerReader</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></code></dd>
503
+ <dt><span class="paramLabel">Parameters:</span></dt>
504
+ <dd><code>readMarker</code> - Indicates where to start reading from the log once message readers are registered</dd>
505
+ <dd><code>reader</code> - The readers to register (all at once)</dd>
506
+ <dt><span class="seeLabel">See Also:</span></dt>
507
+ <dd><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#registerReaders-org.janusgraph.diskstorage.log.ReadMarker-java.lang.Iterable-"><code>Log.registerReaders(ReadMarker, Iterable)</code></a></dd>
508
+ </dl>
509
+ </li>
510
+ </ul>
511
+ <a name="registerReaders-org.janusgraph.diskstorage.log.ReadMarker-java.lang.Iterable-">
512
+ <!-- -->
513
+ </a>
514
+ <ul class="blockList">
515
+ <li class="blockList">
516
+ <h4>registerReaders</h4>
517
+ <pre>public&nbsp;void&nbsp;registerReaders(<a href="../../../../../org/janusgraph/diskstorage/log/ReadMarker.html" title="class in org.janusgraph.diskstorage.log">ReadMarker</a>&nbsp;readMarker,
518
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html" title="interface in org.janusgraph.diskstorage.log">MessageReader</a>&gt;&nbsp;readers)</pre>
519
+ <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#registerReaders-org.janusgraph.diskstorage.log.ReadMarker-java.lang.Iterable-">Log</a></code></span></div>
520
+ <div class="block">Registers the given readers with this log. These readers will be invoked for each newly read message from the log
521
+ starting at the point identified by the provided <a href="../../../../../org/janusgraph/diskstorage/log/ReadMarker.html" title="class in org.janusgraph.diskstorage.log"><code>ReadMarker</code></a>.
522
+ <p>
523
+ If no previous readers were registered, invoking this method triggers reader threads to be instantiated.
524
+ If readers have been previously registered, then the provided <a href="../../../../../org/janusgraph/diskstorage/log/ReadMarker.html" title="class in org.janusgraph.diskstorage.log"><code>ReadMarker</code></a> must be compatible with the
525
+ previous <a href="../../../../../org/janusgraph/diskstorage/log/ReadMarker.html" title="class in org.janusgraph.diskstorage.log"><code>ReadMarker</code></a> or an exception will be thrown.</div>
526
+ <dl>
527
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
528
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#registerReaders-org.janusgraph.diskstorage.log.ReadMarker-java.lang.Iterable-">registerReaders</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></code></dd>
529
+ <dt><span class="paramLabel">Parameters:</span></dt>
530
+ <dd><code>readMarker</code> - Indicates where to start reading from the log once message readers are registered</dd>
531
+ <dd><code>readers</code> - The readers to register (all at once)</dd>
532
+ </dl>
533
+ </li>
534
+ </ul>
535
+ <a name="unregisterReader-org.janusgraph.diskstorage.log.MessageReader-">
536
+ <!-- -->
537
+ </a>
538
+ <ul class="blockListLast">
539
+ <li class="blockList">
540
+ <h4>unregisterReader</h4>
541
+ <pre>public&nbsp;boolean&nbsp;unregisterReader(<a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html" title="interface in org.janusgraph.diskstorage.log">MessageReader</a>&nbsp;reader)</pre>
542
+ <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#unregisterReader-org.janusgraph.diskstorage.log.MessageReader-">Log</a></code></span></div>
543
+ <div class="block">Removes the given reader from the list of registered readers and returns whether this reader was registered in the
544
+ first place.
545
+ Note, that removing the last reader does not stop the reading process. Use <a href="../../../../../org/janusgraph/diskstorage/log/Log.html#close--"><code>Log.close()</code></a> instead.</div>
546
+ <dl>
547
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
548
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html#unregisterReader-org.janusgraph.diskstorage.log.MessageReader-">unregisterReader</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a></code></dd>
549
+ <dt><span class="returnLabel">Returns:</span></dt>
550
+ <dd>true if this MessageReader was registered before and was successfully unregistered, else false</dd>
551
+ </dl>
552
+ </li>
553
+ </ul>
554
+ </li>
555
+ </ul>
556
+ </li>
557
+ </ul>
558
+ </div>
559
+ </div>
560
+ <!-- ========= END OF CLASS DATA ========= -->
561
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
562
+ <div class="bottomNav"><a name="navbar.bottom">
563
+ <!-- -->
564
+ </a>
565
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
566
+ <a name="navbar.bottom.firstrow">
567
+ <!-- -->
568
+ </a>
569
+ <ul class="navList" title="Navigation">
570
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
571
+ <li><a href="package-summary.html">Package</a></li>
572
+ <li class="navBarCell1Rev">Class</li>
573
+ <li><a href="class-use/KCVSLog.html">Use</a></li>
574
+ <li><a href="package-tree.html">Tree</a></li>
575
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
576
+ <li><a href="../../../../../index-all.html">Index</a></li>
577
+ <li><a href="../../../../../help-doc.html">Help</a></li>
578
+ </ul>
579
+ </div>
580
+ <div class="subNav">
581
+ <ul class="navList">
582
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
583
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
584
+ </ul>
585
+ <ul class="navList">
586
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" target="_top">Frames</a></li>
587
+ <li><a href="KCVSLog.html" target="_top">No&nbsp;Frames</a></li>
588
+ </ul>
589
+ <ul class="navList" id="allclasses_navbar_bottom">
590
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
591
+ </ul>
592
+ <div>
593
+ <script type="text/javascript"><!--
594
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
595
+ if(window==top) {
596
+ allClassesLink.style.display = "block";
597
+ }
598
+ else {
599
+ allClassesLink.style.display = "none";
600
+ }
601
+ //-->
602
+ </script>
603
+ </div>
604
+ <div>
605
+ <ul class="subNavList">
606
+ <li>Summary:&nbsp;</li>
607
+ <li>Nested&nbsp;|&nbsp;</li>
608
+ <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
609
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
610
+ <li><a href="#method.summary">Method</a></li>
611
+ </ul>
612
+ <ul class="subNavList">
613
+ <li>Detail:&nbsp;</li>
614
+ <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
615
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
616
+ <li><a href="#method.detail">Method</a></li>
617
+ </ul>
618
+ </div>
619
+ <a name="skip.navbar.bottom">
620
+ <!-- -->
621
+ </a></div>
622
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
623
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
624
+ </body>
625
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html ADDED
@@ -0,0 +1,434 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:28 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>KCVSLogManager (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="KCVSLogManager (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ var methods = {"i0":10,"i1":10};
23
+ var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
24
+ var altColor = "altColor";
25
+ var rowColor = "rowColor";
26
+ var tableTab = "tableTab";
27
+ var activeTableTab = "activeTableTab";
28
+ </script>
29
+ <noscript>
30
+ <div>JavaScript is disabled on your browser.</div>
31
+ </noscript>
32
+ <!-- ========= START OF TOP NAVBAR ======= -->
33
+ <div class="topNav"><a name="navbar.top">
34
+ <!-- -->
35
+ </a>
36
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
37
+ <a name="navbar.top.firstrow">
38
+ <!-- -->
39
+ </a>
40
+ <ul class="navList" title="Navigation">
41
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
42
+ <li><a href="package-summary.html">Package</a></li>
43
+ <li class="navBarCell1Rev">Class</li>
44
+ <li><a href="class-use/KCVSLogManager.html">Use</a></li>
45
+ <li><a href="package-tree.html">Tree</a></li>
46
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
47
+ <li><a href="../../../../../index-all.html">Index</a></li>
48
+ <li><a href="../../../../../help-doc.html">Help</a></li>
49
+ </ul>
50
+ </div>
51
+ <div class="subNav">
52
+ <ul class="navList">
53
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
54
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
55
+ </ul>
56
+ <ul class="navList">
57
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" target="_top">Frames</a></li>
58
+ <li><a href="KCVSLogManager.html" target="_top">No&nbsp;Frames</a></li>
59
+ </ul>
60
+ <ul class="navList" id="allclasses_navbar_top">
61
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
62
+ </ul>
63
+ <div>
64
+ <script type="text/javascript"><!--
65
+ allClassesLink = document.getElementById("allclasses_navbar_top");
66
+ if(window==top) {
67
+ allClassesLink.style.display = "block";
68
+ }
69
+ else {
70
+ allClassesLink.style.display = "none";
71
+ }
72
+ //-->
73
+ </script>
74
+ </div>
75
+ <div>
76
+ <ul class="subNavList">
77
+ <li>Summary:&nbsp;</li>
78
+ <li>Nested&nbsp;|&nbsp;</li>
79
+ <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
80
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
81
+ <li><a href="#method.summary">Method</a></li>
82
+ </ul>
83
+ <ul class="subNavList">
84
+ <li>Detail:&nbsp;</li>
85
+ <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
86
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
87
+ <li><a href="#method.detail">Method</a></li>
88
+ </ul>
89
+ </div>
90
+ <a name="skip.navbar.top">
91
+ <!-- -->
92
+ </a></div>
93
+ <!-- ========= END OF TOP NAVBAR ========= -->
94
+ <!-- ======== START OF CLASS DATA ======== -->
95
+ <div class="header">
96
+ <div class="subTitle">org.janusgraph.diskstorage.log.kcvs</div>
97
+ <h2 title="Class KCVSLogManager" class="title">Class KCVSLogManager</h2>
98
+ </div>
99
+ <div class="contentContainer">
100
+ <ul class="inheritance">
101
+ <li><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
102
+ <li>
103
+ <ul class="inheritance">
104
+ <li>org.janusgraph.diskstorage.log.kcvs.KCVSLogManager</li>
105
+ </ul>
106
+ </li>
107
+ </ul>
108
+ <div class="description">
109
+ <ul class="blockList">
110
+ <li class="blockList">
111
+ <dl>
112
+ <dt>All Implemented Interfaces:</dt>
113
+ <dd><a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html" title="interface in org.janusgraph.diskstorage.log">LogManager</a></dd>
114
+ </dl>
115
+ <hr>
116
+ <br>
117
+ <pre>public class <span class="typeNameLabel">KCVSLogManager</span>
118
+ extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>
119
+ implements <a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html" title="interface in org.janusgraph.diskstorage.log">LogManager</a></pre>
120
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html" title="interface in org.janusgraph.diskstorage.log"><code>LogManager</code></a> against an arbitrary <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStoreManager.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue"><code>KeyColumnValueStoreManager</code></a>. Issues <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> instances
121
+ which wrap around a <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStore.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue"><code>KeyColumnValueStore</code></a>.</div>
122
+ <dl>
123
+ <dt><span class="simpleTagLabel">Author:</span></dt>
124
+ <dd>Matthias Broecheler (me@matthiasb.com)</dd>
125
+ </dl>
126
+ </li>
127
+ </ul>
128
+ </div>
129
+ <div class="summary">
130
+ <ul class="blockList">
131
+ <li class="blockList">
132
+ <!-- =========== FIELD SUMMARY =========== -->
133
+ <ul class="blockList">
134
+ <li class="blockList"><a name="field.summary">
135
+ <!-- -->
136
+ </a>
137
+ <h3>Field Summary</h3>
138
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
139
+ <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
140
+ <tr>
141
+ <th class="colFirst" scope="col">Modifier and Type</th>
142
+ <th class="colLast" scope="col">Field and Description</th>
143
+ </tr>
144
+ <tr class="altColor">
145
+ <td class="colFirst"><code>static int</code></td>
146
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html#CLUSTER_SIZE_DIVIDER">CLUSTER_SIZE_DIVIDER</a></span></code>
147
+ <div class="block">If <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html#LOG_MAX_PARTITIONS"><code>LOG_MAX_PARTITIONS</code></a> isn't set explicitly, the number of partitions is derived by taking the configured
148
+ <a href="../../../../../org/janusgraph/graphdb/configuration/GraphDatabaseConfiguration.html#CLUSTER_MAX_PARTITIONS"><code>GraphDatabaseConfiguration.CLUSTER_MAX_PARTITIONS</code></a> and dividing
149
+ the number by this constant.</div>
150
+ </td>
151
+ </tr>
152
+ <tr class="rowColor">
153
+ <td class="colFirst"><code>static <a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&gt;</code></td>
154
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html#LOG_FIXED_PARTITION">LOG_FIXED_PARTITION</a></span></code>&nbsp;</td>
155
+ </tr>
156
+ <tr class="altColor">
157
+ <td class="colFirst"><code>static <a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&gt;</code></td>
158
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html#LOG_MAX_PARTITIONS">LOG_MAX_PARTITIONS</a></span></code>&nbsp;</td>
159
+ </tr>
160
+ </table>
161
+ </li>
162
+ </ul>
163
+ <!-- ======== CONSTRUCTOR SUMMARY ======== -->
164
+ <ul class="blockList">
165
+ <li class="blockList"><a name="constructor.summary">
166
+ <!-- -->
167
+ </a>
168
+ <h3>Constructor Summary</h3>
169
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
170
+ <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
171
+ <tr>
172
+ <th class="colOne" scope="col">Constructor and Description</th>
173
+ </tr>
174
+ <tr class="altColor">
175
+ <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html#KCVSLogManager-org.janusgraph.diskstorage.keycolumnvalue.KeyColumnValueStoreManager-org.janusgraph.diskstorage.configuration.Configuration-">KCVSLogManager</a></span>(<a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStoreManager.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue">KeyColumnValueStoreManager</a>&nbsp;storeManager,
176
+ <a href="../../../../../org/janusgraph/diskstorage/configuration/Configuration.html" title="interface in org.janusgraph.diskstorage.configuration">Configuration</a>&nbsp;config)</code>
177
+ <div class="block">Opens a log manager against the provided KCVS store with the given configuration.</div>
178
+ </td>
179
+ </tr>
180
+ <tr class="rowColor">
181
+ <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html#KCVSLogManager-org.janusgraph.diskstorage.keycolumnvalue.KeyColumnValueStoreManager-org.janusgraph.diskstorage.configuration.Configuration-int:A-">KCVSLogManager</a></span>(<a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStoreManager.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue">KeyColumnValueStoreManager</a>&nbsp;storeManager,
182
+ <a href="../../../../../org/janusgraph/diskstorage/configuration/Configuration.html" title="interface in org.janusgraph.diskstorage.configuration">Configuration</a>&nbsp;config,
183
+ int[]&nbsp;readPartitionIds)</code>
184
+ <div class="block">Opens a log manager against the provided KCVS store with the given configuration.</div>
185
+ </td>
186
+ </tr>
187
+ </table>
188
+ </li>
189
+ </ul>
190
+ <!-- ========== METHOD SUMMARY =========== -->
191
+ <ul class="blockList">
192
+ <li class="blockList"><a name="method.summary">
193
+ <!-- -->
194
+ </a>
195
+ <h3>Method Summary</h3>
196
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
197
+ <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
198
+ <tr>
199
+ <th class="colFirst" scope="col">Modifier and Type</th>
200
+ <th class="colLast" scope="col">Method and Description</th>
201
+ </tr>
202
+ <tr id="i0" class="altColor">
203
+ <td class="colFirst"><code>void</code></td>
204
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html#close--">close</a></span>()</code>
205
+ <div class="block">Closes the log manager and all open logs (if they haven't already been explicitly closed)</div>
206
+ </td>
207
+ </tr>
208
+ <tr id="i1" class="rowColor">
209
+ <td class="colFirst"><code><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLog</a></code></td>
210
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html#openLog-java.lang.String-">openLog</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
211
+ <div class="block">Opens a log for the given name.</div>
212
+ </td>
213
+ </tr>
214
+ </table>
215
+ <ul class="blockList">
216
+ <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
217
+ <!-- -->
218
+ </a>
219
+ <h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
220
+ <code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
221
+ </ul>
222
+ </li>
223
+ </ul>
224
+ </li>
225
+ </ul>
226
+ </div>
227
+ <div class="details">
228
+ <ul class="blockList">
229
+ <li class="blockList">
230
+ <!-- ============ FIELD DETAIL =========== -->
231
+ <ul class="blockList">
232
+ <li class="blockList"><a name="field.detail">
233
+ <!-- -->
234
+ </a>
235
+ <h3>Field Detail</h3>
236
+ <a name="LOG_FIXED_PARTITION">
237
+ <!-- -->
238
+ </a>
239
+ <ul class="blockList">
240
+ <li class="blockList">
241
+ <h4>LOG_FIXED_PARTITION</h4>
242
+ <pre>public static final&nbsp;<a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&gt; LOG_FIXED_PARTITION</pre>
243
+ </li>
244
+ </ul>
245
+ <a name="LOG_MAX_PARTITIONS">
246
+ <!-- -->
247
+ </a>
248
+ <ul class="blockList">
249
+ <li class="blockList">
250
+ <h4>LOG_MAX_PARTITIONS</h4>
251
+ <pre>public static final&nbsp;<a href="../../../../../org/janusgraph/diskstorage/configuration/ConfigOption.html" title="class in org.janusgraph.diskstorage.configuration">ConfigOption</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>&gt; LOG_MAX_PARTITIONS</pre>
252
+ </li>
253
+ </ul>
254
+ <a name="CLUSTER_SIZE_DIVIDER">
255
+ <!-- -->
256
+ </a>
257
+ <ul class="blockListLast">
258
+ <li class="blockList">
259
+ <h4>CLUSTER_SIZE_DIVIDER</h4>
260
+ <pre>public static final&nbsp;int CLUSTER_SIZE_DIVIDER</pre>
261
+ <div class="block">If <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html#LOG_MAX_PARTITIONS"><code>LOG_MAX_PARTITIONS</code></a> isn't set explicitly, the number of partitions is derived by taking the configured
262
+ <a href="../../../../../org/janusgraph/graphdb/configuration/GraphDatabaseConfiguration.html#CLUSTER_MAX_PARTITIONS"><code>GraphDatabaseConfiguration.CLUSTER_MAX_PARTITIONS</code></a> and dividing
263
+ the number by this constant.</div>
264
+ <dl>
265
+ <dt><span class="seeLabel">See Also:</span></dt>
266
+ <dd><a href="../../../../../constant-values.html#org.janusgraph.diskstorage.log.kcvs.KCVSLogManager.CLUSTER_SIZE_DIVIDER">Constant Field Values</a></dd>
267
+ </dl>
268
+ </li>
269
+ </ul>
270
+ </li>
271
+ </ul>
272
+ <!-- ========= CONSTRUCTOR DETAIL ======== -->
273
+ <ul class="blockList">
274
+ <li class="blockList"><a name="constructor.detail">
275
+ <!-- -->
276
+ </a>
277
+ <h3>Constructor Detail</h3>
278
+ <a name="KCVSLogManager-org.janusgraph.diskstorage.keycolumnvalue.KeyColumnValueStoreManager-org.janusgraph.diskstorage.configuration.Configuration-">
279
+ <!-- -->
280
+ </a>
281
+ <ul class="blockList">
282
+ <li class="blockList">
283
+ <h4>KCVSLogManager</h4>
284
+ <pre>public&nbsp;KCVSLogManager(<a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStoreManager.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue">KeyColumnValueStoreManager</a>&nbsp;storeManager,
285
+ <a href="../../../../../org/janusgraph/diskstorage/configuration/Configuration.html" title="interface in org.janusgraph.diskstorage.configuration">Configuration</a>&nbsp;config)</pre>
286
+ <div class="block">Opens a log manager against the provided KCVS store with the given configuration.</div>
287
+ <dl>
288
+ <dt><span class="paramLabel">Parameters:</span></dt>
289
+ <dd><code>storeManager</code> - </dd>
290
+ <dd><code>config</code> - </dd>
291
+ </dl>
292
+ </li>
293
+ </ul>
294
+ <a name="KCVSLogManager-org.janusgraph.diskstorage.keycolumnvalue.KeyColumnValueStoreManager-org.janusgraph.diskstorage.configuration.Configuration-int:A-">
295
+ <!-- -->
296
+ </a>
297
+ <ul class="blockListLast">
298
+ <li class="blockList">
299
+ <h4>KCVSLogManager</h4>
300
+ <pre>public&nbsp;KCVSLogManager(<a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStoreManager.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue">KeyColumnValueStoreManager</a>&nbsp;storeManager,
301
+ <a href="../../../../../org/janusgraph/diskstorage/configuration/Configuration.html" title="interface in org.janusgraph.diskstorage.configuration">Configuration</a>&nbsp;config,
302
+ int[]&nbsp;readPartitionIds)</pre>
303
+ <div class="block">Opens a log manager against the provided KCVS store with the given configuration. Also provided is a list
304
+ of read-partition-ids. These only apply when readers are registered against an opened log. In that case,
305
+ the readers only read from the provided list of partition ids.</div>
306
+ <dl>
307
+ <dt><span class="paramLabel">Parameters:</span></dt>
308
+ <dd><code>storeManager</code> - </dd>
309
+ <dd><code>config</code> - </dd>
310
+ <dd><code>readPartitionIds</code> - </dd>
311
+ </dl>
312
+ </li>
313
+ </ul>
314
+ </li>
315
+ </ul>
316
+ <!-- ============ METHOD DETAIL ========== -->
317
+ <ul class="blockList">
318
+ <li class="blockList"><a name="method.detail">
319
+ <!-- -->
320
+ </a>
321
+ <h3>Method Detail</h3>
322
+ <a name="openLog-java.lang.String-">
323
+ <!-- -->
324
+ </a>
325
+ <ul class="blockList">
326
+ <li class="blockList">
327
+ <h4>openLog</h4>
328
+ <pre>public&nbsp;<a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLog</a>&nbsp;openLog(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)
329
+ throws <a href="../../../../../org/janusgraph/diskstorage/BackendException.html" title="class in org.janusgraph.diskstorage">BackendException</a></pre>
330
+ <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html#openLog-java.lang.String-">LogManager</a></code></span></div>
331
+ <div class="block">Opens a log for the given name.
332
+ <p>
333
+ If a log with the given name already exists, the existing log is returned.</div>
334
+ <dl>
335
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
336
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html#openLog-java.lang.String-">openLog</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html" title="interface in org.janusgraph.diskstorage.log">LogManager</a></code></dd>
337
+ <dt><span class="paramLabel">Parameters:</span></dt>
338
+ <dd><code>name</code> - Name of the log to be opened</dd>
339
+ <dt><span class="returnLabel">Returns:</span></dt>
340
+ <dt><span class="throwsLabel">Throws:</span></dt>
341
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/BackendException.html" title="class in org.janusgraph.diskstorage">BackendException</a></code></dd>
342
+ </dl>
343
+ </li>
344
+ </ul>
345
+ <a name="close--">
346
+ <!-- -->
347
+ </a>
348
+ <ul class="blockListLast">
349
+ <li class="blockList">
350
+ <h4>close</h4>
351
+ <pre>public&nbsp;void&nbsp;close()
352
+ throws <a href="../../../../../org/janusgraph/diskstorage/BackendException.html" title="class in org.janusgraph.diskstorage">BackendException</a></pre>
353
+ <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html#close--">LogManager</a></code></span></div>
354
+ <div class="block">Closes the log manager and all open logs (if they haven't already been explicitly closed)</div>
355
+ <dl>
356
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
357
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html#close--">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html" title="interface in org.janusgraph.diskstorage.log">LogManager</a></code></dd>
358
+ <dt><span class="throwsLabel">Throws:</span></dt>
359
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/BackendException.html" title="class in org.janusgraph.diskstorage">BackendException</a></code></dd>
360
+ </dl>
361
+ </li>
362
+ </ul>
363
+ </li>
364
+ </ul>
365
+ </li>
366
+ </ul>
367
+ </div>
368
+ </div>
369
+ <!-- ========= END OF CLASS DATA ========= -->
370
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
371
+ <div class="bottomNav"><a name="navbar.bottom">
372
+ <!-- -->
373
+ </a>
374
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
375
+ <a name="navbar.bottom.firstrow">
376
+ <!-- -->
377
+ </a>
378
+ <ul class="navList" title="Navigation">
379
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
380
+ <li><a href="package-summary.html">Package</a></li>
381
+ <li class="navBarCell1Rev">Class</li>
382
+ <li><a href="class-use/KCVSLogManager.html">Use</a></li>
383
+ <li><a href="package-tree.html">Tree</a></li>
384
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
385
+ <li><a href="../../../../../index-all.html">Index</a></li>
386
+ <li><a href="../../../../../help-doc.html">Help</a></li>
387
+ </ul>
388
+ </div>
389
+ <div class="subNav">
390
+ <ul class="navList">
391
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
392
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
393
+ </ul>
394
+ <ul class="navList">
395
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" target="_top">Frames</a></li>
396
+ <li><a href="KCVSLogManager.html" target="_top">No&nbsp;Frames</a></li>
397
+ </ul>
398
+ <ul class="navList" id="allclasses_navbar_bottom">
399
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
400
+ </ul>
401
+ <div>
402
+ <script type="text/javascript"><!--
403
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
404
+ if(window==top) {
405
+ allClassesLink.style.display = "block";
406
+ }
407
+ else {
408
+ allClassesLink.style.display = "none";
409
+ }
410
+ //-->
411
+ </script>
412
+ </div>
413
+ <div>
414
+ <ul class="subNavList">
415
+ <li>Summary:&nbsp;</li>
416
+ <li>Nested&nbsp;|&nbsp;</li>
417
+ <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
418
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
419
+ <li><a href="#method.summary">Method</a></li>
420
+ </ul>
421
+ <ul class="subNavList">
422
+ <li>Detail:&nbsp;</li>
423
+ <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
424
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
425
+ <li><a href="#method.detail">Method</a></li>
426
+ </ul>
427
+ </div>
428
+ <a name="skip.navbar.bottom">
429
+ <!-- -->
430
+ </a></div>
431
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
432
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
433
+ </body>
434
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html ADDED
@@ -0,0 +1,264 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:28 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>KCVSMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="KCVSMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="package-summary.html">Package</a></li>
37
+ <li class="navBarCell1Rev">Class</li>
38
+ <li><a href="class-use/KCVSMessage.html">Use</a></li>
39
+ <li><a href="package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
48
+ <li>Next&nbsp;Class</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html" target="_top">Frames</a></li>
52
+ <li><a href="KCVSMessage.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <div>
70
+ <ul class="subNavList">
71
+ <li>Summary:&nbsp;</li>
72
+ <li>Nested&nbsp;|&nbsp;</li>
73
+ <li>Field&nbsp;|&nbsp;</li>
74
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
75
+ <li><a href="#methods.inherited.from.class.org.janusgraph.diskstorage.log.util.AbstractMessage">Method</a></li>
76
+ </ul>
77
+ <ul class="subNavList">
78
+ <li>Detail:&nbsp;</li>
79
+ <li>Field&nbsp;|&nbsp;</li>
80
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
81
+ <li>Method</li>
82
+ </ul>
83
+ </div>
84
+ <a name="skip.navbar.top">
85
+ <!-- -->
86
+ </a></div>
87
+ <!-- ========= END OF TOP NAVBAR ========= -->
88
+ <!-- ======== START OF CLASS DATA ======== -->
89
+ <div class="header">
90
+ <div class="subTitle">org.janusgraph.diskstorage.log.kcvs</div>
91
+ <h2 title="Class KCVSMessage" class="title">Class KCVSMessage</h2>
92
+ </div>
93
+ <div class="contentContainer">
94
+ <ul class="inheritance">
95
+ <li><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
96
+ <li>
97
+ <ul class="inheritance">
98
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util">org.janusgraph.diskstorage.log.util.AbstractMessage</a></li>
99
+ <li>
100
+ <ul class="inheritance">
101
+ <li>org.janusgraph.diskstorage.log.kcvs.KCVSMessage</li>
102
+ </ul>
103
+ </li>
104
+ </ul>
105
+ </li>
106
+ </ul>
107
+ <div class="description">
108
+ <ul class="blockList">
109
+ <li class="blockList">
110
+ <dl>
111
+ <dt>All Implemented Interfaces:</dt>
112
+ <dd><a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></dd>
113
+ </dl>
114
+ <hr>
115
+ <br>
116
+ <pre>public class <span class="typeNameLabel">KCVSMessage</span>
117
+ extends <a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util">AbstractMessage</a></pre>
118
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util"><code>AbstractMessage</code></a> for <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs"><code>KCVSLog</code></a>.</div>
119
+ <dl>
120
+ <dt><span class="simpleTagLabel">Author:</span></dt>
121
+ <dd>Matthias Broecheler (me@matthiasb.com)</dd>
122
+ </dl>
123
+ </li>
124
+ </ul>
125
+ </div>
126
+ <div class="summary">
127
+ <ul class="blockList">
128
+ <li class="blockList">
129
+ <!-- ======== CONSTRUCTOR SUMMARY ======== -->
130
+ <ul class="blockList">
131
+ <li class="blockList"><a name="constructor.summary">
132
+ <!-- -->
133
+ </a>
134
+ <h3>Constructor Summary</h3>
135
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
136
+ <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
137
+ <tr>
138
+ <th class="colOne" scope="col">Constructor and Description</th>
139
+ </tr>
140
+ <tr class="altColor">
141
+ <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html#KCVSMessage-org.janusgraph.diskstorage.StaticBuffer-java.time.Instant-java.lang.String-">KCVSMessage</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;payload,
142
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html?is-external=true" title="class or interface in java.time">Instant</a>&nbsp;timestamp,
143
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;senderId)</code>&nbsp;</td>
144
+ </tr>
145
+ </table>
146
+ </li>
147
+ </ul>
148
+ <!-- ========== METHOD SUMMARY =========== -->
149
+ <ul class="blockList">
150
+ <li class="blockList"><a name="method.summary">
151
+ <!-- -->
152
+ </a>
153
+ <h3>Method Summary</h3>
154
+ <ul class="blockList">
155
+ <li class="blockList"><a name="methods.inherited.from.class.org.janusgraph.diskstorage.log.util.AbstractMessage">
156
+ <!-- -->
157
+ </a>
158
+ <h3>Methods inherited from class&nbsp;org.janusgraph.diskstorage.log.util.<a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util">AbstractMessage</a></h3>
159
+ <code><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#equals-java.lang.Object-">equals</a>, <a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#getContent--">getContent</a>, <a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#getSenderId--">getSenderId</a>, <a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#getTimestamp--">getTimestamp</a>, <a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#hashCode--">hashCode</a>, <a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#toString--">toString</a></code></li>
160
+ </ul>
161
+ <ul class="blockList">
162
+ <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
163
+ <!-- -->
164
+ </a>
165
+ <h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
166
+ <code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
167
+ </ul>
168
+ </li>
169
+ </ul>
170
+ </li>
171
+ </ul>
172
+ </div>
173
+ <div class="details">
174
+ <ul class="blockList">
175
+ <li class="blockList">
176
+ <!-- ========= CONSTRUCTOR DETAIL ======== -->
177
+ <ul class="blockList">
178
+ <li class="blockList"><a name="constructor.detail">
179
+ <!-- -->
180
+ </a>
181
+ <h3>Constructor Detail</h3>
182
+ <a name="KCVSMessage-org.janusgraph.diskstorage.StaticBuffer-java.time.Instant-java.lang.String-">
183
+ <!-- -->
184
+ </a>
185
+ <ul class="blockListLast">
186
+ <li class="blockList">
187
+ <h4>KCVSMessage</h4>
188
+ <pre>public&nbsp;KCVSMessage(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;payload,
189
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html?is-external=true" title="class or interface in java.time">Instant</a>&nbsp;timestamp,
190
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;senderId)</pre>
191
+ </li>
192
+ </ul>
193
+ </li>
194
+ </ul>
195
+ </li>
196
+ </ul>
197
+ </div>
198
+ </div>
199
+ <!-- ========= END OF CLASS DATA ========= -->
200
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
201
+ <div class="bottomNav"><a name="navbar.bottom">
202
+ <!-- -->
203
+ </a>
204
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
205
+ <a name="navbar.bottom.firstrow">
206
+ <!-- -->
207
+ </a>
208
+ <ul class="navList" title="Navigation">
209
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
210
+ <li><a href="package-summary.html">Package</a></li>
211
+ <li class="navBarCell1Rev">Class</li>
212
+ <li><a href="class-use/KCVSMessage.html">Use</a></li>
213
+ <li><a href="package-tree.html">Tree</a></li>
214
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
215
+ <li><a href="../../../../../index-all.html">Index</a></li>
216
+ <li><a href="../../../../../help-doc.html">Help</a></li>
217
+ </ul>
218
+ </div>
219
+ <div class="subNav">
220
+ <ul class="navList">
221
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
222
+ <li>Next&nbsp;Class</li>
223
+ </ul>
224
+ <ul class="navList">
225
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html" target="_top">Frames</a></li>
226
+ <li><a href="KCVSMessage.html" target="_top">No&nbsp;Frames</a></li>
227
+ </ul>
228
+ <ul class="navList" id="allclasses_navbar_bottom">
229
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
230
+ </ul>
231
+ <div>
232
+ <script type="text/javascript"><!--
233
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
234
+ if(window==top) {
235
+ allClassesLink.style.display = "block";
236
+ }
237
+ else {
238
+ allClassesLink.style.display = "none";
239
+ }
240
+ //-->
241
+ </script>
242
+ </div>
243
+ <div>
244
+ <ul class="subNavList">
245
+ <li>Summary:&nbsp;</li>
246
+ <li>Nested&nbsp;|&nbsp;</li>
247
+ <li>Field&nbsp;|&nbsp;</li>
248
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
249
+ <li><a href="#methods.inherited.from.class.org.janusgraph.diskstorage.log.util.AbstractMessage">Method</a></li>
250
+ </ul>
251
+ <ul class="subNavList">
252
+ <li>Detail:&nbsp;</li>
253
+ <li>Field&nbsp;|&nbsp;</li>
254
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
255
+ <li>Method</li>
256
+ </ul>
257
+ </div>
258
+ <a name="skip.navbar.bottom">
259
+ <!-- -->
260
+ </a></div>
261
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
262
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
263
+ </body>
264
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/class-use/ExternalCachePersistor.html ADDED
@@ -0,0 +1,166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Class org.janusgraph.diskstorage.log.kcvs.ExternalCachePersistor (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Class org.janusgraph.diskstorage.log.kcvs.ExternalCachePersistor (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="../package-summary.html">Package</a></li>
37
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs">Class</a></li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="../package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/class-use/ExternalCachePersistor.html" target="_top">Frames</a></li>
52
+ <li><a href="ExternalCachePersistor.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h2 title="Uses of Class org.janusgraph.diskstorage.log.kcvs.ExternalCachePersistor" class="title">Uses of Class<br>org.janusgraph.diskstorage.log.kcvs.ExternalCachePersistor</h2>
75
+ </div>
76
+ <div class="classUseContainer">
77
+ <ul class="blockList">
78
+ <li class="blockList">
79
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
80
+ <caption><span>Packages that use <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs">ExternalCachePersistor</a></span><span class="tabEnd">&nbsp;</span></caption>
81
+ <tr>
82
+ <th class="colFirst" scope="col">Package</th>
83
+ <th class="colLast" scope="col">Description</th>
84
+ </tr>
85
+ <tbody>
86
+ <tr class="altColor">
87
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage">org.janusgraph.diskstorage</a></td>
88
+ <td class="colLast">&nbsp;</td>
89
+ </tr>
90
+ </tbody>
91
+ </table>
92
+ </li>
93
+ <li class="blockList">
94
+ <ul class="blockList">
95
+ <li class="blockList"><a name="org.janusgraph.diskstorage">
96
+ <!-- -->
97
+ </a>
98
+ <h3>Uses of <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs">ExternalCachePersistor</a> in <a href="../../../../../../org/janusgraph/diskstorage/package-summary.html">org.janusgraph.diskstorage</a></h3>
99
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
100
+ <caption><span>Methods in <a href="../../../../../../org/janusgraph/diskstorage/package-summary.html">org.janusgraph.diskstorage</a> that return <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs">ExternalCachePersistor</a></span><span class="tabEnd">&nbsp;</span></caption>
101
+ <tr>
102
+ <th class="colFirst" scope="col">Modifier and Type</th>
103
+ <th class="colLast" scope="col">Method and Description</th>
104
+ </tr>
105
+ <tbody>
106
+ <tr class="altColor">
107
+ <td class="colFirst"><code><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs">ExternalCachePersistor</a></code></td>
108
+ <td class="colLast"><span class="typeNameLabel">BackendTransaction.</span><code><span class="memberNameLink"><a href="../../../../../../org/janusgraph/diskstorage/BackendTransaction.html#getTxLogPersistor--">getTxLogPersistor</a></span>()</code>&nbsp;</td>
109
+ </tr>
110
+ </tbody>
111
+ </table>
112
+ </li>
113
+ </ul>
114
+ </li>
115
+ </ul>
116
+ </div>
117
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
118
+ <div class="bottomNav"><a name="navbar.bottom">
119
+ <!-- -->
120
+ </a>
121
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
122
+ <a name="navbar.bottom.firstrow">
123
+ <!-- -->
124
+ </a>
125
+ <ul class="navList" title="Navigation">
126
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
127
+ <li><a href="../package-summary.html">Package</a></li>
128
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs">Class</a></li>
129
+ <li class="navBarCell1Rev">Use</li>
130
+ <li><a href="../package-tree.html">Tree</a></li>
131
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
132
+ <li><a href="../../../../../../index-all.html">Index</a></li>
133
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
134
+ </ul>
135
+ </div>
136
+ <div class="subNav">
137
+ <ul class="navList">
138
+ <li>Prev</li>
139
+ <li>Next</li>
140
+ </ul>
141
+ <ul class="navList">
142
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/class-use/ExternalCachePersistor.html" target="_top">Frames</a></li>
143
+ <li><a href="ExternalCachePersistor.html" target="_top">No&nbsp;Frames</a></li>
144
+ </ul>
145
+ <ul class="navList" id="allclasses_navbar_bottom">
146
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
147
+ </ul>
148
+ <div>
149
+ <script type="text/javascript"><!--
150
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
151
+ if(window==top) {
152
+ allClassesLink.style.display = "block";
153
+ }
154
+ else {
155
+ allClassesLink.style.display = "none";
156
+ }
157
+ //-->
158
+ </script>
159
+ </div>
160
+ <a name="skip.navbar.bottom">
161
+ <!-- -->
162
+ </a></div>
163
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
164
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
165
+ </body>
166
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/class-use/ExternalPersistor.html ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Interface org.janusgraph.diskstorage.log.kcvs.ExternalPersistor (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Interface org.janusgraph.diskstorage.log.kcvs.ExternalPersistor (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="../package-summary.html">Package</a></li>
37
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">Class</a></li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="../package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/class-use/ExternalPersistor.html" target="_top">Frames</a></li>
52
+ <li><a href="ExternalPersistor.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h2 title="Uses of Interface org.janusgraph.diskstorage.log.kcvs.ExternalPersistor" class="title">Uses of Interface<br>org.janusgraph.diskstorage.log.kcvs.ExternalPersistor</h2>
75
+ </div>
76
+ <div class="classUseContainer">
77
+ <ul class="blockList">
78
+ <li class="blockList">
79
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
80
+ <caption><span>Packages that use <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a></span><span class="tabEnd">&nbsp;</span></caption>
81
+ <tr>
82
+ <th class="colFirst" scope="col">Package</th>
83
+ <th class="colLast" scope="col">Description</th>
84
+ </tr>
85
+ <tbody>
86
+ <tr class="altColor">
87
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage.log.kcvs">org.janusgraph.diskstorage.log.kcvs</a></td>
88
+ <td class="colLast">&nbsp;</td>
89
+ </tr>
90
+ </tbody>
91
+ </table>
92
+ </li>
93
+ <li class="blockList">
94
+ <ul class="blockList">
95
+ <li class="blockList"><a name="org.janusgraph.diskstorage.log.kcvs">
96
+ <!-- -->
97
+ </a>
98
+ <h3>Uses of <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a> in <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a></h3>
99
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
100
+ <caption><span>Classes in <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a> that implement <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a></span><span class="tabEnd">&nbsp;</span></caption>
101
+ <tr>
102
+ <th class="colFirst" scope="col">Modifier and Type</th>
103
+ <th class="colLast" scope="col">Class and Description</th>
104
+ </tr>
105
+ <tbody>
106
+ <tr class="altColor">
107
+ <td class="colFirst"><code>class&nbsp;</code></td>
108
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs">ExternalCachePersistor</a></span></code>&nbsp;</td>
109
+ </tr>
110
+ </tbody>
111
+ </table>
112
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
113
+ <caption><span>Methods in <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a> with parameters of type <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a></span><span class="tabEnd">&nbsp;</span></caption>
114
+ <tr>
115
+ <th class="colFirst" scope="col">Modifier and Type</th>
116
+ <th class="colLast" scope="col">Method and Description</th>
117
+ </tr>
118
+ <tbody>
119
+ <tr class="altColor">
120
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</code></td>
121
+ <td class="colLast"><span class="typeNameLabel">KCVSLog.</span><code><span class="memberNameLink"><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#add-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.StaticBuffer-org.janusgraph.diskstorage.log.kcvs.ExternalPersistor-">add</a></span>(<a href="../../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content,
122
+ <a href="../../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;key,
123
+ <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a>&nbsp;persistor)</code>&nbsp;</td>
124
+ </tr>
125
+ </tbody>
126
+ </table>
127
+ </li>
128
+ </ul>
129
+ </li>
130
+ </ul>
131
+ </div>
132
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
133
+ <div class="bottomNav"><a name="navbar.bottom">
134
+ <!-- -->
135
+ </a>
136
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
137
+ <a name="navbar.bottom.firstrow">
138
+ <!-- -->
139
+ </a>
140
+ <ul class="navList" title="Navigation">
141
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
142
+ <li><a href="../package-summary.html">Package</a></li>
143
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">Class</a></li>
144
+ <li class="navBarCell1Rev">Use</li>
145
+ <li><a href="../package-tree.html">Tree</a></li>
146
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
147
+ <li><a href="../../../../../../index-all.html">Index</a></li>
148
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
149
+ </ul>
150
+ </div>
151
+ <div class="subNav">
152
+ <ul class="navList">
153
+ <li>Prev</li>
154
+ <li>Next</li>
155
+ </ul>
156
+ <ul class="navList">
157
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/class-use/ExternalPersistor.html" target="_top">Frames</a></li>
158
+ <li><a href="ExternalPersistor.html" target="_top">No&nbsp;Frames</a></li>
159
+ </ul>
160
+ <ul class="navList" id="allclasses_navbar_bottom">
161
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
162
+ </ul>
163
+ <div>
164
+ <script type="text/javascript"><!--
165
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
166
+ if(window==top) {
167
+ allClassesLink.style.display = "block";
168
+ }
169
+ else {
170
+ allClassesLink.style.display = "none";
171
+ }
172
+ //-->
173
+ </script>
174
+ </div>
175
+ <a name="skip.navbar.bottom">
176
+ <!-- -->
177
+ </a></div>
178
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
179
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
180
+ </body>
181
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLog.html ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Class org.janusgraph.diskstorage.log.kcvs.KCVSLog (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Class org.janusgraph.diskstorage.log.kcvs.KCVSLog (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="../package-summary.html">Package</a></li>
37
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">Class</a></li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="../package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLog.html" target="_top">Frames</a></li>
52
+ <li><a href="KCVSLog.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h2 title="Uses of Class org.janusgraph.diskstorage.log.kcvs.KCVSLog" class="title">Uses of Class<br>org.janusgraph.diskstorage.log.kcvs.KCVSLog</h2>
75
+ </div>
76
+ <div class="classUseContainer">
77
+ <ul class="blockList">
78
+ <li class="blockList">
79
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
80
+ <caption><span>Packages that use <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLog</a></span><span class="tabEnd">&nbsp;</span></caption>
81
+ <tr>
82
+ <th class="colFirst" scope="col">Package</th>
83
+ <th class="colLast" scope="col">Description</th>
84
+ </tr>
85
+ <tbody>
86
+ <tr class="altColor">
87
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage">org.janusgraph.diskstorage</a></td>
88
+ <td class="colLast">&nbsp;</td>
89
+ </tr>
90
+ <tr class="rowColor">
91
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage.log.kcvs">org.janusgraph.diskstorage.log.kcvs</a></td>
92
+ <td class="colLast">&nbsp;</td>
93
+ </tr>
94
+ </tbody>
95
+ </table>
96
+ </li>
97
+ <li class="blockList">
98
+ <ul class="blockList">
99
+ <li class="blockList"><a name="org.janusgraph.diskstorage">
100
+ <!-- -->
101
+ </a>
102
+ <h3>Uses of <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLog</a> in <a href="../../../../../../org/janusgraph/diskstorage/package-summary.html">org.janusgraph.diskstorage</a></h3>
103
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
104
+ <caption><span>Methods in <a href="../../../../../../org/janusgraph/diskstorage/package-summary.html">org.janusgraph.diskstorage</a> that return <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLog</a></span><span class="tabEnd">&nbsp;</span></caption>
105
+ <tr>
106
+ <th class="colFirst" scope="col">Modifier and Type</th>
107
+ <th class="colLast" scope="col">Method and Description</th>
108
+ </tr>
109
+ <tbody>
110
+ <tr class="altColor">
111
+ <td class="colFirst"><code><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLog</a></code></td>
112
+ <td class="colLast"><span class="typeNameLabel">Backend.</span><code><span class="memberNameLink"><a href="../../../../../../org/janusgraph/diskstorage/Backend.html#getSystemTxLog--">getSystemTxLog</a></span>()</code>&nbsp;</td>
113
+ </tr>
114
+ </tbody>
115
+ </table>
116
+ </li>
117
+ <li class="blockList"><a name="org.janusgraph.diskstorage.log.kcvs">
118
+ <!-- -->
119
+ </a>
120
+ <h3>Uses of <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLog</a> in <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a></h3>
121
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
122
+ <caption><span>Methods in <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a> that return <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLog</a></span><span class="tabEnd">&nbsp;</span></caption>
123
+ <tr>
124
+ <th class="colFirst" scope="col">Modifier and Type</th>
125
+ <th class="colLast" scope="col">Method and Description</th>
126
+ </tr>
127
+ <tbody>
128
+ <tr class="altColor">
129
+ <td class="colFirst"><code><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLog</a></code></td>
130
+ <td class="colLast"><span class="typeNameLabel">KCVSLogManager.</span><code><span class="memberNameLink"><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html#openLog-java.lang.String-">openLog</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>&nbsp;</td>
131
+ </tr>
132
+ </tbody>
133
+ </table>
134
+ </li>
135
+ </ul>
136
+ </li>
137
+ </ul>
138
+ </div>
139
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
140
+ <div class="bottomNav"><a name="navbar.bottom">
141
+ <!-- -->
142
+ </a>
143
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
144
+ <a name="navbar.bottom.firstrow">
145
+ <!-- -->
146
+ </a>
147
+ <ul class="navList" title="Navigation">
148
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
149
+ <li><a href="../package-summary.html">Package</a></li>
150
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">Class</a></li>
151
+ <li class="navBarCell1Rev">Use</li>
152
+ <li><a href="../package-tree.html">Tree</a></li>
153
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
154
+ <li><a href="../../../../../../index-all.html">Index</a></li>
155
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
156
+ </ul>
157
+ </div>
158
+ <div class="subNav">
159
+ <ul class="navList">
160
+ <li>Prev</li>
161
+ <li>Next</li>
162
+ </ul>
163
+ <ul class="navList">
164
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLog.html" target="_top">Frames</a></li>
165
+ <li><a href="KCVSLog.html" target="_top">No&nbsp;Frames</a></li>
166
+ </ul>
167
+ <ul class="navList" id="allclasses_navbar_bottom">
168
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
169
+ </ul>
170
+ <div>
171
+ <script type="text/javascript"><!--
172
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
173
+ if(window==top) {
174
+ allClassesLink.style.display = "block";
175
+ }
176
+ else {
177
+ allClassesLink.style.display = "none";
178
+ }
179
+ //-->
180
+ </script>
181
+ </div>
182
+ <a name="skip.navbar.bottom">
183
+ <!-- -->
184
+ </a></div>
185
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
186
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
187
+ </body>
188
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLogManager.html ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Class org.janusgraph.diskstorage.log.kcvs.KCVSLogManager (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Class org.janusgraph.diskstorage.log.kcvs.KCVSLogManager (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="../package-summary.html">Package</a></li>
37
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">Class</a></li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="../package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLogManager.html" target="_top">Frames</a></li>
52
+ <li><a href="KCVSLogManager.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h2 title="Uses of Class org.janusgraph.diskstorage.log.kcvs.KCVSLogManager" class="title">Uses of Class<br>org.janusgraph.diskstorage.log.kcvs.KCVSLogManager</h2>
75
+ </div>
76
+ <div class="classUseContainer">
77
+ <ul class="blockList">
78
+ <li class="blockList">
79
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
80
+ <caption><span>Packages that use <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLogManager</a></span><span class="tabEnd">&nbsp;</span></caption>
81
+ <tr>
82
+ <th class="colFirst" scope="col">Package</th>
83
+ <th class="colLast" scope="col">Description</th>
84
+ </tr>
85
+ <tbody>
86
+ <tr class="altColor">
87
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage">org.janusgraph.diskstorage</a></td>
88
+ <td class="colLast">&nbsp;</td>
89
+ </tr>
90
+ <tr class="rowColor">
91
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage.log.kcvs">org.janusgraph.diskstorage.log.kcvs</a></td>
92
+ <td class="colLast">&nbsp;</td>
93
+ </tr>
94
+ </tbody>
95
+ </table>
96
+ </li>
97
+ <li class="blockList">
98
+ <ul class="blockList">
99
+ <li class="blockList"><a name="org.janusgraph.diskstorage">
100
+ <!-- -->
101
+ </a>
102
+ <h3>Uses of <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLogManager</a> in <a href="../../../../../../org/janusgraph/diskstorage/package-summary.html">org.janusgraph.diskstorage</a></h3>
103
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
104
+ <caption><span>Methods in <a href="../../../../../../org/janusgraph/diskstorage/package-summary.html">org.janusgraph.diskstorage</a> that return <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLogManager</a></span><span class="tabEnd">&nbsp;</span></caption>
105
+ <tr>
106
+ <th class="colFirst" scope="col">Modifier and Type</th>
107
+ <th class="colLast" scope="col">Method and Description</th>
108
+ </tr>
109
+ <tbody>
110
+ <tr class="altColor">
111
+ <td class="colFirst"><code><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLogManager</a></code></td>
112
+ <td class="colLast"><span class="typeNameLabel">Backend.</span><code><span class="memberNameLink"><a href="../../../../../../org/janusgraph/diskstorage/Backend.html#getKCVSLogManager-java.lang.String-">getKCVSLogManager</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;logName)</code>&nbsp;</td>
113
+ </tr>
114
+ </tbody>
115
+ </table>
116
+ </li>
117
+ <li class="blockList"><a name="org.janusgraph.diskstorage.log.kcvs">
118
+ <!-- -->
119
+ </a>
120
+ <h3>Uses of <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLogManager</a> in <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a></h3>
121
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
122
+ <caption><span>Constructors in <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a> with parameters of type <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLogManager</a></span><span class="tabEnd">&nbsp;</span></caption>
123
+ <tr>
124
+ <th class="colOne" scope="col">Constructor and Description</th>
125
+ </tr>
126
+ <tbody>
127
+ <tr class="altColor">
128
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html#KCVSLog-java.lang.String-org.janusgraph.diskstorage.log.kcvs.KCVSLogManager-org.janusgraph.diskstorage.keycolumnvalue.KeyColumnValueStore-org.janusgraph.diskstorage.configuration.Configuration-">KCVSLog</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name,
129
+ <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLogManager</a>&nbsp;manager,
130
+ <a href="../../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStore.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue">KeyColumnValueStore</a>&nbsp;store,
131
+ <a href="../../../../../../org/janusgraph/diskstorage/configuration/Configuration.html" title="interface in org.janusgraph.diskstorage.configuration">Configuration</a>&nbsp;config)</code>&nbsp;</td>
132
+ </tr>
133
+ </tbody>
134
+ </table>
135
+ </li>
136
+ </ul>
137
+ </li>
138
+ </ul>
139
+ </div>
140
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
141
+ <div class="bottomNav"><a name="navbar.bottom">
142
+ <!-- -->
143
+ </a>
144
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
145
+ <a name="navbar.bottom.firstrow">
146
+ <!-- -->
147
+ </a>
148
+ <ul class="navList" title="Navigation">
149
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
150
+ <li><a href="../package-summary.html">Package</a></li>
151
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">Class</a></li>
152
+ <li class="navBarCell1Rev">Use</li>
153
+ <li><a href="../package-tree.html">Tree</a></li>
154
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
155
+ <li><a href="../../../../../../index-all.html">Index</a></li>
156
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
157
+ </ul>
158
+ </div>
159
+ <div class="subNav">
160
+ <ul class="navList">
161
+ <li>Prev</li>
162
+ <li>Next</li>
163
+ </ul>
164
+ <ul class="navList">
165
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLogManager.html" target="_top">Frames</a></li>
166
+ <li><a href="KCVSLogManager.html" target="_top">No&nbsp;Frames</a></li>
167
+ </ul>
168
+ <ul class="navList" id="allclasses_navbar_bottom">
169
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
170
+ </ul>
171
+ <div>
172
+ <script type="text/javascript"><!--
173
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
174
+ if(window==top) {
175
+ allClassesLink.style.display = "block";
176
+ }
177
+ else {
178
+ allClassesLink.style.display = "none";
179
+ }
180
+ //-->
181
+ </script>
182
+ </div>
183
+ <a name="skip.navbar.bottom">
184
+ <!-- -->
185
+ </a></div>
186
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
187
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
188
+ </body>
189
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/class-use/KCVSMessage.html ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Class org.janusgraph.diskstorage.log.kcvs.KCVSMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Class org.janusgraph.diskstorage.log.kcvs.KCVSMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="../package-summary.html">Package</a></li>
37
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html" title="class in org.janusgraph.diskstorage.log.kcvs">Class</a></li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="../package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/class-use/KCVSMessage.html" target="_top">Frames</a></li>
52
+ <li><a href="KCVSMessage.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h2 title="Uses of Class org.janusgraph.diskstorage.log.kcvs.KCVSMessage" class="title">Uses of Class<br>org.janusgraph.diskstorage.log.kcvs.KCVSMessage</h2>
75
+ </div>
76
+ <div class="classUseContainer">No usage of org.janusgraph.diskstorage.log.kcvs.KCVSMessage</div>
77
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
78
+ <div class="bottomNav"><a name="navbar.bottom">
79
+ <!-- -->
80
+ </a>
81
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
82
+ <a name="navbar.bottom.firstrow">
83
+ <!-- -->
84
+ </a>
85
+ <ul class="navList" title="Navigation">
86
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
87
+ <li><a href="../package-summary.html">Package</a></li>
88
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html" title="class in org.janusgraph.diskstorage.log.kcvs">Class</a></li>
89
+ <li class="navBarCell1Rev">Use</li>
90
+ <li><a href="../package-tree.html">Tree</a></li>
91
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
92
+ <li><a href="../../../../../../index-all.html">Index</a></li>
93
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
94
+ </ul>
95
+ </div>
96
+ <div class="subNav">
97
+ <ul class="navList">
98
+ <li>Prev</li>
99
+ <li>Next</li>
100
+ </ul>
101
+ <ul class="navList">
102
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/class-use/KCVSMessage.html" target="_top">Frames</a></li>
103
+ <li><a href="KCVSMessage.html" target="_top">No&nbsp;Frames</a></li>
104
+ </ul>
105
+ <ul class="navList" id="allclasses_navbar_bottom">
106
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
107
+ </ul>
108
+ <div>
109
+ <script type="text/javascript"><!--
110
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
111
+ if(window==top) {
112
+ allClassesLink.style.display = "block";
113
+ }
114
+ else {
115
+ allClassesLink.style.display = "none";
116
+ }
117
+ //-->
118
+ </script>
119
+ </div>
120
+ <a name="skip.navbar.bottom">
121
+ <!-- -->
122
+ </a></div>
123
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
124
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
125
+ </body>
126
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/package-frame.html ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>org.janusgraph.diskstorage.log.kcvs (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <h1 class="bar"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html" target="classFrame">org.janusgraph.diskstorage.log.kcvs</a></h1>
14
+ <div class="indexContainer">
15
+ <h2 title="Interfaces">Interfaces</h2>
16
+ <ul title="Interfaces">
17
+ <li><a href="ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs" target="classFrame"><span class="interfaceName">ExternalPersistor</span></a></li>
18
+ </ul>
19
+ <h2 title="Classes">Classes</h2>
20
+ <ul title="Classes">
21
+ <li><a href="ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs" target="classFrame">ExternalCachePersistor</a></li>
22
+ <li><a href="KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs" target="classFrame">KCVSLog</a></li>
23
+ <li><a href="KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs" target="classFrame">KCVSLogManager</a></li>
24
+ <li><a href="KCVSMessage.html" title="class in org.janusgraph.diskstorage.log.kcvs" target="classFrame">KCVSMessage</a></li>
25
+ </ul>
26
+ </div>
27
+ </body>
28
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/package-summary.html ADDED
@@ -0,0 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>org.janusgraph.diskstorage.log.kcvs (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="org.janusgraph.diskstorage.log.kcvs (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
36
+ <li class="navBarCell1Rev">Package</li>
37
+ <li>Class</li>
38
+ <li><a href="package-use.html">Use</a></li>
39
+ <li><a href="package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/package-summary.html">Prev&nbsp;Package</a></li>
48
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/package-summary.html">Next&nbsp;Package</a></li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/package-summary.html" target="_top">Frames</a></li>
52
+ <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h1 title="Package" class="title">Package&nbsp;org.janusgraph.diskstorage.log.kcvs</h1>
75
+ </div>
76
+ <div class="contentContainer">
77
+ <ul class="blockList">
78
+ <li class="blockList">
79
+ <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Interface Summary table, listing interfaces, and an explanation">
80
+ <caption><span>Interface Summary</span><span class="tabEnd">&nbsp;</span></caption>
81
+ <tr>
82
+ <th class="colFirst" scope="col">Interface</th>
83
+ <th class="colLast" scope="col">Description</th>
84
+ </tr>
85
+ <tbody>
86
+ <tr class="altColor">
87
+ <td class="colFirst"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a></td>
88
+ <td class="colLast">&nbsp;</td>
89
+ </tr>
90
+ </tbody>
91
+ </table>
92
+ </li>
93
+ <li class="blockList">
94
+ <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
95
+ <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
96
+ <tr>
97
+ <th class="colFirst" scope="col">Class</th>
98
+ <th class="colLast" scope="col">Description</th>
99
+ </tr>
100
+ <tbody>
101
+ <tr class="altColor">
102
+ <td class="colFirst"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs">ExternalCachePersistor</a></td>
103
+ <td class="colLast">&nbsp;</td>
104
+ </tr>
105
+ <tr class="rowColor">
106
+ <td class="colFirst"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLog</a></td>
107
+ <td class="colLast">
108
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> wrapped around a <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStore.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue"><code>KeyColumnValueStore</code></a>.</div>
109
+ </td>
110
+ </tr>
111
+ <tr class="altColor">
112
+ <td class="colFirst"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSLogManager</a></td>
113
+ <td class="colLast">
114
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html" title="interface in org.janusgraph.diskstorage.log"><code>LogManager</code></a> against an arbitrary <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStoreManager.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue"><code>KeyColumnValueStoreManager</code></a>.</div>
115
+ </td>
116
+ </tr>
117
+ <tr class="rowColor">
118
+ <td class="colFirst"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSMessage</a></td>
119
+ <td class="colLast">
120
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util"><code>AbstractMessage</code></a> for <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs"><code>KCVSLog</code></a>.</div>
121
+ </td>
122
+ </tr>
123
+ </tbody>
124
+ </table>
125
+ </li>
126
+ </ul>
127
+ </div>
128
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
129
+ <div class="bottomNav"><a name="navbar.bottom">
130
+ <!-- -->
131
+ </a>
132
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
133
+ <a name="navbar.bottom.firstrow">
134
+ <!-- -->
135
+ </a>
136
+ <ul class="navList" title="Navigation">
137
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
138
+ <li class="navBarCell1Rev">Package</li>
139
+ <li>Class</li>
140
+ <li><a href="package-use.html">Use</a></li>
141
+ <li><a href="package-tree.html">Tree</a></li>
142
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
143
+ <li><a href="../../../../../index-all.html">Index</a></li>
144
+ <li><a href="../../../../../help-doc.html">Help</a></li>
145
+ </ul>
146
+ </div>
147
+ <div class="subNav">
148
+ <ul class="navList">
149
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/package-summary.html">Prev&nbsp;Package</a></li>
150
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/package-summary.html">Next&nbsp;Package</a></li>
151
+ </ul>
152
+ <ul class="navList">
153
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/package-summary.html" target="_top">Frames</a></li>
154
+ <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
155
+ </ul>
156
+ <ul class="navList" id="allclasses_navbar_bottom">
157
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
158
+ </ul>
159
+ <div>
160
+ <script type="text/javascript"><!--
161
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
162
+ if(window==top) {
163
+ allClassesLink.style.display = "block";
164
+ }
165
+ else {
166
+ allClassesLink.style.display = "none";
167
+ }
168
+ //-->
169
+ </script>
170
+ </div>
171
+ <a name="skip.navbar.bottom">
172
+ <!-- -->
173
+ </a></div>
174
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
175
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
176
+ </body>
177
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/package-tree.html ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>org.janusgraph.diskstorage.log.kcvs Class Hierarchy (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="org.janusgraph.diskstorage.log.kcvs Class Hierarchy (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="package-summary.html">Package</a></li>
37
+ <li>Class</li>
38
+ <li>Use</li>
39
+ <li class="navBarCell1Rev">Tree</li>
40
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/package-tree.html">Prev</a></li>
48
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/package-tree.html">Next</a></li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/package-tree.html" target="_top">Frames</a></li>
52
+ <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h1 class="title">Hierarchy For Package org.janusgraph.diskstorage.log.kcvs</h1>
75
+ <span class="packageHierarchyLabel">Package Hierarchies:</span>
76
+ <ul class="horizontal">
77
+ <li><a href="../../../../../overview-tree.html">All Packages</a></li>
78
+ </ul>
79
+ </div>
80
+ <div class="contentContainer">
81
+ <h2 title="Class Hierarchy">Class Hierarchy</h2>
82
+ <ul>
83
+ <li type="circle">java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
84
+ <ul>
85
+ <li type="circle">org.janusgraph.diskstorage.log.util.<a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">AbstractMessage</span></a> (implements org.janusgraph.diskstorage.log.<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>)
86
+ <ul>
87
+ <li type="circle">org.janusgraph.diskstorage.log.kcvs.<a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">KCVSMessage</span></a></li>
88
+ </ul>
89
+ </li>
90
+ <li type="circle">org.janusgraph.diskstorage.log.kcvs.<a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalCachePersistor.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">ExternalCachePersistor</span></a> (implements org.janusgraph.diskstorage.log.kcvs.<a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a>)</li>
91
+ <li type="circle">org.janusgraph.diskstorage.log.kcvs.<a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">KCVSLog</span></a> (implements org.janusgraph.diskstorage.util.<a href="../../../../../org/janusgraph/diskstorage/util/BackendOperation.TransactionalProvider.html" title="interface in org.janusgraph.diskstorage.util">BackendOperation.TransactionalProvider</a>, org.janusgraph.diskstorage.log.<a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log">Log</a>)</li>
92
+ <li type="circle">org.janusgraph.diskstorage.log.kcvs.<a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLogManager.html" title="class in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">KCVSLogManager</span></a> (implements org.janusgraph.diskstorage.log.<a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html" title="interface in org.janusgraph.diskstorage.log">LogManager</a>)</li>
93
+ </ul>
94
+ </li>
95
+ </ul>
96
+ <h2 title="Interface Hierarchy">Interface Hierarchy</h2>
97
+ <ul>
98
+ <li type="circle">org.janusgraph.diskstorage.log.kcvs.<a href="../../../../../org/janusgraph/diskstorage/log/kcvs/ExternalPersistor.html" title="interface in org.janusgraph.diskstorage.log.kcvs"><span class="typeNameLink">ExternalPersistor</span></a></li>
99
+ </ul>
100
+ </div>
101
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
102
+ <div class="bottomNav"><a name="navbar.bottom">
103
+ <!-- -->
104
+ </a>
105
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
106
+ <a name="navbar.bottom.firstrow">
107
+ <!-- -->
108
+ </a>
109
+ <ul class="navList" title="Navigation">
110
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
111
+ <li><a href="package-summary.html">Package</a></li>
112
+ <li>Class</li>
113
+ <li>Use</li>
114
+ <li class="navBarCell1Rev">Tree</li>
115
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
116
+ <li><a href="../../../../../index-all.html">Index</a></li>
117
+ <li><a href="../../../../../help-doc.html">Help</a></li>
118
+ </ul>
119
+ </div>
120
+ <div class="subNav">
121
+ <ul class="navList">
122
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/package-tree.html">Prev</a></li>
123
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/package-tree.html">Next</a></li>
124
+ </ul>
125
+ <ul class="navList">
126
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/package-tree.html" target="_top">Frames</a></li>
127
+ <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
128
+ </ul>
129
+ <ul class="navList" id="allclasses_navbar_bottom">
130
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
131
+ </ul>
132
+ <div>
133
+ <script type="text/javascript"><!--
134
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
135
+ if(window==top) {
136
+ allClassesLink.style.display = "block";
137
+ }
138
+ else {
139
+ allClassesLink.style.display = "none";
140
+ }
141
+ //-->
142
+ </script>
143
+ </div>
144
+ <a name="skip.navbar.bottom">
145
+ <!-- -->
146
+ </a></div>
147
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
148
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
149
+ </body>
150
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/kcvs/package-use.html ADDED
@@ -0,0 +1,198 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:30 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Package org.janusgraph.diskstorage.log.kcvs (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Package org.janusgraph.diskstorage.log.kcvs (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="package-summary.html">Package</a></li>
37
+ <li>Class</li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/package-use.html" target="_top">Frames</a></li>
52
+ <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h1 title="Uses of Package org.janusgraph.diskstorage.log.kcvs" class="title">Uses of Package<br>org.janusgraph.diskstorage.log.kcvs</h1>
75
+ </div>
76
+ <div class="contentContainer">
77
+ <ul class="blockList">
78
+ <li class="blockList">
79
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
80
+ <caption><span>Packages that use <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a></span><span class="tabEnd">&nbsp;</span></caption>
81
+ <tr>
82
+ <th class="colFirst" scope="col">Package</th>
83
+ <th class="colLast" scope="col">Description</th>
84
+ </tr>
85
+ <tbody>
86
+ <tr class="altColor">
87
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage">org.janusgraph.diskstorage</a></td>
88
+ <td class="colLast">&nbsp;</td>
89
+ </tr>
90
+ <tr class="rowColor">
91
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage.log.kcvs">org.janusgraph.diskstorage.log.kcvs</a></td>
92
+ <td class="colLast">&nbsp;</td>
93
+ </tr>
94
+ </tbody>
95
+ </table>
96
+ </li>
97
+ <li class="blockList"><a name="org.janusgraph.diskstorage">
98
+ <!-- -->
99
+ </a>
100
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
101
+ <caption><span>Classes in <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a> used by <a href="../../../../../org/janusgraph/diskstorage/package-summary.html">org.janusgraph.diskstorage</a></span><span class="tabEnd">&nbsp;</span></caption>
102
+ <tr>
103
+ <th class="colOne" scope="col">Class and Description</th>
104
+ </tr>
105
+ <tbody>
106
+ <tr class="altColor">
107
+ <td class="colOne"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/class-use/ExternalCachePersistor.html#org.janusgraph.diskstorage">ExternalCachePersistor</a>&nbsp;</td>
108
+ </tr>
109
+ <tr class="rowColor">
110
+ <td class="colOne"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLog.html#org.janusgraph.diskstorage">KCVSLog</a>
111
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> wrapped around a <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStore.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue"><code>KeyColumnValueStore</code></a>.</div>
112
+ </td>
113
+ </tr>
114
+ <tr class="altColor">
115
+ <td class="colOne"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLogManager.html#org.janusgraph.diskstorage">KCVSLogManager</a>
116
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html" title="interface in org.janusgraph.diskstorage.log"><code>LogManager</code></a> against an arbitrary <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStoreManager.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue"><code>KeyColumnValueStoreManager</code></a>.</div>
117
+ </td>
118
+ </tr>
119
+ </tbody>
120
+ </table>
121
+ </li>
122
+ <li class="blockList"><a name="org.janusgraph.diskstorage.log.kcvs">
123
+ <!-- -->
124
+ </a>
125
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
126
+ <caption><span>Classes in <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a> used by <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a></span><span class="tabEnd">&nbsp;</span></caption>
127
+ <tr>
128
+ <th class="colOne" scope="col">Class and Description</th>
129
+ </tr>
130
+ <tbody>
131
+ <tr class="altColor">
132
+ <td class="colOne"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/class-use/ExternalPersistor.html#org.janusgraph.diskstorage.log.kcvs">ExternalPersistor</a>&nbsp;</td>
133
+ </tr>
134
+ <tr class="rowColor">
135
+ <td class="colOne"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLog.html#org.janusgraph.diskstorage.log.kcvs">KCVSLog</a>
136
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> wrapped around a <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStore.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue"><code>KeyColumnValueStore</code></a>.</div>
137
+ </td>
138
+ </tr>
139
+ <tr class="altColor">
140
+ <td class="colOne"><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/class-use/KCVSLogManager.html#org.janusgraph.diskstorage.log.kcvs">KCVSLogManager</a>
141
+ <div class="block">Implementation of <a href="../../../../../org/janusgraph/diskstorage/log/LogManager.html" title="interface in org.janusgraph.diskstorage.log"><code>LogManager</code></a> against an arbitrary <a href="../../../../../org/janusgraph/diskstorage/keycolumnvalue/KeyColumnValueStoreManager.html" title="interface in org.janusgraph.diskstorage.keycolumnvalue"><code>KeyColumnValueStoreManager</code></a>.</div>
142
+ </td>
143
+ </tr>
144
+ </tbody>
145
+ </table>
146
+ </li>
147
+ </ul>
148
+ </div>
149
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
150
+ <div class="bottomNav"><a name="navbar.bottom">
151
+ <!-- -->
152
+ </a>
153
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
154
+ <a name="navbar.bottom.firstrow">
155
+ <!-- -->
156
+ </a>
157
+ <ul class="navList" title="Navigation">
158
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
159
+ <li><a href="package-summary.html">Package</a></li>
160
+ <li>Class</li>
161
+ <li class="navBarCell1Rev">Use</li>
162
+ <li><a href="package-tree.html">Tree</a></li>
163
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
164
+ <li><a href="../../../../../index-all.html">Index</a></li>
165
+ <li><a href="../../../../../help-doc.html">Help</a></li>
166
+ </ul>
167
+ </div>
168
+ <div class="subNav">
169
+ <ul class="navList">
170
+ <li>Prev</li>
171
+ <li>Next</li>
172
+ </ul>
173
+ <ul class="navList">
174
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/kcvs/package-use.html" target="_top">Frames</a></li>
175
+ <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li>
176
+ </ul>
177
+ <ul class="navList" id="allclasses_navbar_bottom">
178
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
179
+ </ul>
180
+ <div>
181
+ <script type="text/javascript"><!--
182
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
183
+ if(window==top) {
184
+ allClassesLink.style.display = "block";
185
+ }
186
+ else {
187
+ allClassesLink.style.display = "none";
188
+ }
189
+ //-->
190
+ </script>
191
+ </div>
192
+ <a name="skip.navbar.bottom">
193
+ <!-- -->
194
+ </a></div>
195
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
196
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
197
+ </body>
198
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/AbstractMessage.html ADDED
@@ -0,0 +1,400 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:28 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>AbstractMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="AbstractMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
23
+ var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
24
+ var altColor = "altColor";
25
+ var rowColor = "rowColor";
26
+ var tableTab = "tableTab";
27
+ var activeTableTab = "activeTableTab";
28
+ </script>
29
+ <noscript>
30
+ <div>JavaScript is disabled on your browser.</div>
31
+ </noscript>
32
+ <!-- ========= START OF TOP NAVBAR ======= -->
33
+ <div class="topNav"><a name="navbar.top">
34
+ <!-- -->
35
+ </a>
36
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
37
+ <a name="navbar.top.firstrow">
38
+ <!-- -->
39
+ </a>
40
+ <ul class="navList" title="Navigation">
41
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
42
+ <li><a href="package-summary.html">Package</a></li>
43
+ <li class="navBarCell1Rev">Class</li>
44
+ <li><a href="class-use/AbstractMessage.html">Use</a></li>
45
+ <li><a href="package-tree.html">Tree</a></li>
46
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
47
+ <li><a href="../../../../../index-all.html">Index</a></li>
48
+ <li><a href="../../../../../help-doc.html">Help</a></li>
49
+ </ul>
50
+ </div>
51
+ <div class="subNav">
52
+ <ul class="navList">
53
+ <li>Prev&nbsp;Class</li>
54
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
55
+ </ul>
56
+ <ul class="navList">
57
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/AbstractMessage.html" target="_top">Frames</a></li>
58
+ <li><a href="AbstractMessage.html" target="_top">No&nbsp;Frames</a></li>
59
+ </ul>
60
+ <ul class="navList" id="allclasses_navbar_top">
61
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
62
+ </ul>
63
+ <div>
64
+ <script type="text/javascript"><!--
65
+ allClassesLink = document.getElementById("allclasses_navbar_top");
66
+ if(window==top) {
67
+ allClassesLink.style.display = "block";
68
+ }
69
+ else {
70
+ allClassesLink.style.display = "none";
71
+ }
72
+ //-->
73
+ </script>
74
+ </div>
75
+ <div>
76
+ <ul class="subNavList">
77
+ <li>Summary:&nbsp;</li>
78
+ <li>Nested&nbsp;|&nbsp;</li>
79
+ <li>Field&nbsp;|&nbsp;</li>
80
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
81
+ <li><a href="#method.summary">Method</a></li>
82
+ </ul>
83
+ <ul class="subNavList">
84
+ <li>Detail:&nbsp;</li>
85
+ <li>Field&nbsp;|&nbsp;</li>
86
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
87
+ <li><a href="#method.detail">Method</a></li>
88
+ </ul>
89
+ </div>
90
+ <a name="skip.navbar.top">
91
+ <!-- -->
92
+ </a></div>
93
+ <!-- ========= END OF TOP NAVBAR ========= -->
94
+ <!-- ======== START OF CLASS DATA ======== -->
95
+ <div class="header">
96
+ <div class="subTitle">org.janusgraph.diskstorage.log.util</div>
97
+ <h2 title="Class AbstractMessage" class="title">Class AbstractMessage</h2>
98
+ </div>
99
+ <div class="contentContainer">
100
+ <ul class="inheritance">
101
+ <li><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
102
+ <li>
103
+ <ul class="inheritance">
104
+ <li>org.janusgraph.diskstorage.log.util.AbstractMessage</li>
105
+ </ul>
106
+ </li>
107
+ </ul>
108
+ <div class="description">
109
+ <ul class="blockList">
110
+ <li class="blockList">
111
+ <dl>
112
+ <dt>All Implemented Interfaces:</dt>
113
+ <dd><a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></dd>
114
+ </dl>
115
+ <dl>
116
+ <dt>Direct Known Subclasses:</dt>
117
+ <dd><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSMessage</a></dd>
118
+ </dl>
119
+ <hr>
120
+ <br>
121
+ <pre>public abstract class <span class="typeNameLabel">AbstractMessage</span>
122
+ extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>
123
+ implements <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></pre>
124
+ <div class="block">Abstract implementation of <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log"><code>Message</code></a> which exposes the timestamp, sender, and payload
125
+ of a message.
126
+ Particular <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> implementations can extend this class.</div>
127
+ <dl>
128
+ <dt><span class="simpleTagLabel">Author:</span></dt>
129
+ <dd>Matthias Broecheler (me@matthiasb.com)</dd>
130
+ </dl>
131
+ </li>
132
+ </ul>
133
+ </div>
134
+ <div class="summary">
135
+ <ul class="blockList">
136
+ <li class="blockList">
137
+ <!-- ======== CONSTRUCTOR SUMMARY ======== -->
138
+ <ul class="blockList">
139
+ <li class="blockList"><a name="constructor.summary">
140
+ <!-- -->
141
+ </a>
142
+ <h3>Constructor Summary</h3>
143
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
144
+ <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
145
+ <tr>
146
+ <th class="colFirst" scope="col">Modifier</th>
147
+ <th class="colLast" scope="col">Constructor and Description</th>
148
+ </tr>
149
+ <tr class="altColor">
150
+ <td class="colFirst"><code>protected </code></td>
151
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#AbstractMessage-org.janusgraph.diskstorage.StaticBuffer-java.time.Instant-java.lang.String-">AbstractMessage</a></span>(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content,
152
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html?is-external=true" title="class or interface in java.time">Instant</a>&nbsp;timestamp,
153
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;senderId)</code>&nbsp;</td>
154
+ </tr>
155
+ </table>
156
+ </li>
157
+ </ul>
158
+ <!-- ========== METHOD SUMMARY =========== -->
159
+ <ul class="blockList">
160
+ <li class="blockList"><a name="method.summary">
161
+ <!-- -->
162
+ </a>
163
+ <h3>Method Summary</h3>
164
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
165
+ <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
166
+ <tr>
167
+ <th class="colFirst" scope="col">Modifier and Type</th>
168
+ <th class="colLast" scope="col">Method and Description</th>
169
+ </tr>
170
+ <tr id="i0" class="altColor">
171
+ <td class="colFirst"><code>boolean</code></td>
172
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#equals-java.lang.Object-">equals</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;other)</code>&nbsp;</td>
173
+ </tr>
174
+ <tr id="i1" class="rowColor">
175
+ <td class="colFirst"><code><a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a></code></td>
176
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#getContent--">getContent</a></span>()</code>
177
+ <div class="block">Returns the content of the message</div>
178
+ </td>
179
+ </tr>
180
+ <tr id="i2" class="altColor">
181
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
182
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#getSenderId--">getSenderId</a></span>()</code>
183
+ <div class="block">Returns the unique identifier for the sender of the message</div>
184
+ </td>
185
+ </tr>
186
+ <tr id="i3" class="rowColor">
187
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html?is-external=true" title="class or interface in java.time">Instant</a></code></td>
188
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#getTimestamp--">getTimestamp</a></span>()</code>
189
+ <div class="block">Returns the timestamp of this message in the specified time unit.</div>
190
+ </td>
191
+ </tr>
192
+ <tr id="i4" class="altColor">
193
+ <td class="colFirst"><code>int</code></td>
194
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#hashCode--">hashCode</a></span>()</code>&nbsp;</td>
195
+ </tr>
196
+ <tr id="i5" class="rowColor">
197
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
198
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html#toString--">toString</a></span>()</code>&nbsp;</td>
199
+ </tr>
200
+ </table>
201
+ <ul class="blockList">
202
+ <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
203
+ <!-- -->
204
+ </a>
205
+ <h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
206
+ <code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
207
+ </ul>
208
+ </li>
209
+ </ul>
210
+ </li>
211
+ </ul>
212
+ </div>
213
+ <div class="details">
214
+ <ul class="blockList">
215
+ <li class="blockList">
216
+ <!-- ========= CONSTRUCTOR DETAIL ======== -->
217
+ <ul class="blockList">
218
+ <li class="blockList"><a name="constructor.detail">
219
+ <!-- -->
220
+ </a>
221
+ <h3>Constructor Detail</h3>
222
+ <a name="AbstractMessage-org.janusgraph.diskstorage.StaticBuffer-java.time.Instant-java.lang.String-">
223
+ <!-- -->
224
+ </a>
225
+ <ul class="blockListLast">
226
+ <li class="blockList">
227
+ <h4>AbstractMessage</h4>
228
+ <pre>protected&nbsp;AbstractMessage(<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;content,
229
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html?is-external=true" title="class or interface in java.time">Instant</a>&nbsp;timestamp,
230
+ <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;senderId)</pre>
231
+ </li>
232
+ </ul>
233
+ </li>
234
+ </ul>
235
+ <!-- ============ METHOD DETAIL ========== -->
236
+ <ul class="blockList">
237
+ <li class="blockList"><a name="method.detail">
238
+ <!-- -->
239
+ </a>
240
+ <h3>Method Detail</h3>
241
+ <a name="getSenderId--">
242
+ <!-- -->
243
+ </a>
244
+ <ul class="blockList">
245
+ <li class="blockList">
246
+ <h4>getSenderId</h4>
247
+ <pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getSenderId()</pre>
248
+ <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Message.html#getSenderId--">Message</a></code></span></div>
249
+ <div class="block">Returns the unique identifier for the sender of the message</div>
250
+ <dl>
251
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
252
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/Message.html#getSenderId--">getSenderId</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></code></dd>
253
+ <dt><span class="returnLabel">Returns:</span></dt>
254
+ </dl>
255
+ </li>
256
+ </ul>
257
+ <a name="getTimestamp--">
258
+ <!-- -->
259
+ </a>
260
+ <ul class="blockList">
261
+ <li class="blockList">
262
+ <h4>getTimestamp</h4>
263
+ <pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html?is-external=true" title="class or interface in java.time">Instant</a>&nbsp;getTimestamp()</pre>
264
+ <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Message.html#getTimestamp--">Message</a></code></span></div>
265
+ <div class="block">Returns the timestamp of this message in the specified time unit.
266
+ This is the time when the message was added to the log.</div>
267
+ <dl>
268
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
269
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/Message.html#getTimestamp--">getTimestamp</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></code></dd>
270
+ <dt><span class="returnLabel">Returns:</span></dt>
271
+ </dl>
272
+ </li>
273
+ </ul>
274
+ <a name="getContent--">
275
+ <!-- -->
276
+ </a>
277
+ <ul class="blockList">
278
+ <li class="blockList">
279
+ <h4>getContent</h4>
280
+ <pre>public&nbsp;<a href="../../../../../org/janusgraph/diskstorage/StaticBuffer.html" title="interface in org.janusgraph.diskstorage">StaticBuffer</a>&nbsp;getContent()</pre>
281
+ <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Message.html#getContent--">Message</a></code></span></div>
282
+ <div class="block">Returns the content of the message</div>
283
+ <dl>
284
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
285
+ <dd><code><a href="../../../../../org/janusgraph/diskstorage/log/Message.html#getContent--">getContent</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a></code></dd>
286
+ <dt><span class="returnLabel">Returns:</span></dt>
287
+ </dl>
288
+ </li>
289
+ </ul>
290
+ <a name="toString--">
291
+ <!-- -->
292
+ </a>
293
+ <ul class="blockList">
294
+ <li class="blockList">
295
+ <h4>toString</h4>
296
+ <pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;toString()</pre>
297
+ <dl>
298
+ <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
299
+ <dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>
300
+ </dl>
301
+ </li>
302
+ </ul>
303
+ <a name="hashCode--">
304
+ <!-- -->
305
+ </a>
306
+ <ul class="blockList">
307
+ <li class="blockList">
308
+ <h4>hashCode</h4>
309
+ <pre>public&nbsp;int&nbsp;hashCode()</pre>
310
+ <dl>
311
+ <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
312
+ <dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>
313
+ </dl>
314
+ </li>
315
+ </ul>
316
+ <a name="equals-java.lang.Object-">
317
+ <!-- -->
318
+ </a>
319
+ <ul class="blockListLast">
320
+ <li class="blockList">
321
+ <h4>equals</h4>
322
+ <pre>public&nbsp;boolean&nbsp;equals(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;other)</pre>
323
+ <dl>
324
+ <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
325
+ <dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>
326
+ </dl>
327
+ </li>
328
+ </ul>
329
+ </li>
330
+ </ul>
331
+ </li>
332
+ </ul>
333
+ </div>
334
+ </div>
335
+ <!-- ========= END OF CLASS DATA ========= -->
336
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
337
+ <div class="bottomNav"><a name="navbar.bottom">
338
+ <!-- -->
339
+ </a>
340
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
341
+ <a name="navbar.bottom.firstrow">
342
+ <!-- -->
343
+ </a>
344
+ <ul class="navList" title="Navigation">
345
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
346
+ <li><a href="package-summary.html">Package</a></li>
347
+ <li class="navBarCell1Rev">Class</li>
348
+ <li><a href="class-use/AbstractMessage.html">Use</a></li>
349
+ <li><a href="package-tree.html">Tree</a></li>
350
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
351
+ <li><a href="../../../../../index-all.html">Index</a></li>
352
+ <li><a href="../../../../../help-doc.html">Help</a></li>
353
+ </ul>
354
+ </div>
355
+ <div class="subNav">
356
+ <ul class="navList">
357
+ <li>Prev&nbsp;Class</li>
358
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
359
+ </ul>
360
+ <ul class="navList">
361
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/AbstractMessage.html" target="_top">Frames</a></li>
362
+ <li><a href="AbstractMessage.html" target="_top">No&nbsp;Frames</a></li>
363
+ </ul>
364
+ <ul class="navList" id="allclasses_navbar_bottom">
365
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
366
+ </ul>
367
+ <div>
368
+ <script type="text/javascript"><!--
369
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
370
+ if(window==top) {
371
+ allClassesLink.style.display = "block";
372
+ }
373
+ else {
374
+ allClassesLink.style.display = "none";
375
+ }
376
+ //-->
377
+ </script>
378
+ </div>
379
+ <div>
380
+ <ul class="subNavList">
381
+ <li>Summary:&nbsp;</li>
382
+ <li>Nested&nbsp;|&nbsp;</li>
383
+ <li>Field&nbsp;|&nbsp;</li>
384
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
385
+ <li><a href="#method.summary">Method</a></li>
386
+ </ul>
387
+ <ul class="subNavList">
388
+ <li>Detail:&nbsp;</li>
389
+ <li>Field&nbsp;|&nbsp;</li>
390
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
391
+ <li><a href="#method.detail">Method</a></li>
392
+ </ul>
393
+ </div>
394
+ <a name="skip.navbar.bottom">
395
+ <!-- -->
396
+ </a></div>
397
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
398
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
399
+ </body>
400
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/FutureMessage.html ADDED
@@ -0,0 +1,367 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:28 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>FutureMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="FutureMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ var methods = {"i0":10,"i1":10,"i2":10,"i3":10};
23
+ var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
24
+ var altColor = "altColor";
25
+ var rowColor = "rowColor";
26
+ var tableTab = "tableTab";
27
+ var activeTableTab = "activeTableTab";
28
+ </script>
29
+ <noscript>
30
+ <div>JavaScript is disabled on your browser.</div>
31
+ </noscript>
32
+ <!-- ========= START OF TOP NAVBAR ======= -->
33
+ <div class="topNav"><a name="navbar.top">
34
+ <!-- -->
35
+ </a>
36
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
37
+ <a name="navbar.top.firstrow">
38
+ <!-- -->
39
+ </a>
40
+ <ul class="navList" title="Navigation">
41
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
42
+ <li><a href="package-summary.html">Package</a></li>
43
+ <li class="navBarCell1Rev">Class</li>
44
+ <li><a href="class-use/FutureMessage.html">Use</a></li>
45
+ <li><a href="package-tree.html">Tree</a></li>
46
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
47
+ <li><a href="../../../../../index-all.html">Index</a></li>
48
+ <li><a href="../../../../../help-doc.html">Help</a></li>
49
+ </ul>
50
+ </div>
51
+ <div class="subNav">
52
+ <ul class="navList">
53
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
54
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/ProcessMessageJob.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
55
+ </ul>
56
+ <ul class="navList">
57
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/FutureMessage.html" target="_top">Frames</a></li>
58
+ <li><a href="FutureMessage.html" target="_top">No&nbsp;Frames</a></li>
59
+ </ul>
60
+ <ul class="navList" id="allclasses_navbar_top">
61
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
62
+ </ul>
63
+ <div>
64
+ <script type="text/javascript"><!--
65
+ allClassesLink = document.getElementById("allclasses_navbar_top");
66
+ if(window==top) {
67
+ allClassesLink.style.display = "block";
68
+ }
69
+ else {
70
+ allClassesLink.style.display = "none";
71
+ }
72
+ //-->
73
+ </script>
74
+ </div>
75
+ <div>
76
+ <ul class="subNavList">
77
+ <li>Summary:&nbsp;</li>
78
+ <li>Nested&nbsp;|&nbsp;</li>
79
+ <li>Field&nbsp;|&nbsp;</li>
80
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
81
+ <li><a href="#method.summary">Method</a></li>
82
+ </ul>
83
+ <ul class="subNavList">
84
+ <li>Detail:&nbsp;</li>
85
+ <li>Field&nbsp;|&nbsp;</li>
86
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
87
+ <li><a href="#method.detail">Method</a></li>
88
+ </ul>
89
+ </div>
90
+ <a name="skip.navbar.top">
91
+ <!-- -->
92
+ </a></div>
93
+ <!-- ========= END OF TOP NAVBAR ========= -->
94
+ <!-- ======== START OF CLASS DATA ======== -->
95
+ <div class="header">
96
+ <div class="subTitle">org.janusgraph.diskstorage.log.util</div>
97
+ <h2 title="Class FutureMessage" class="title">Class FutureMessage&lt;M extends <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</h2>
98
+ </div>
99
+ <div class="contentContainer">
100
+ <ul class="inheritance">
101
+ <li><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
102
+ <li>
103
+ <ul class="inheritance">
104
+ <li>com.google.common.util.concurrent.internal.InternalFutureFailureAccess</li>
105
+ <li>
106
+ <ul class="inheritance">
107
+ <li>com.google.common.util.concurrent.AbstractFuture&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</li>
108
+ <li>
109
+ <ul class="inheritance">
110
+ <li>org.janusgraph.diskstorage.log.util.FutureMessage&lt;M&gt;</li>
111
+ </ul>
112
+ </li>
113
+ </ul>
114
+ </li>
115
+ </ul>
116
+ </li>
117
+ </ul>
118
+ <div class="description">
119
+ <ul class="blockList">
120
+ <li class="blockList">
121
+ <dl>
122
+ <dt>All Implemented Interfaces:</dt>
123
+ <dd>com.google.common.util.concurrent.ListenableFuture&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;, <a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</a>&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</dd>
124
+ </dl>
125
+ <hr>
126
+ <br>
127
+ <pre>public class <span class="typeNameLabel">FutureMessage&lt;M extends <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</span>
128
+ extends com.google.common.util.concurrent.AbstractFuture&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</pre>
129
+ <div class="block">Implementation of a <a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent"><code>Future</code></a> for <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log"><code>Message</code></a>s that
130
+ are being added to the <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> via <a href="../../../../../org/janusgraph/diskstorage/log/Log.html#add-org.janusgraph.diskstorage.StaticBuffer-"><code>Log.add(org.janusgraph.diskstorage.StaticBuffer)</code></a>.
131
+
132
+ This class can be used by <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> implementations to wrap messages.</div>
133
+ <dl>
134
+ <dt><span class="simpleTagLabel">Author:</span></dt>
135
+ <dd>Matthias Broecheler (me@matthiasb.com)</dd>
136
+ </dl>
137
+ </li>
138
+ </ul>
139
+ </div>
140
+ <div class="summary">
141
+ <ul class="blockList">
142
+ <li class="blockList">
143
+ <!-- ======== CONSTRUCTOR SUMMARY ======== -->
144
+ <ul class="blockList">
145
+ <li class="blockList"><a name="constructor.summary">
146
+ <!-- -->
147
+ </a>
148
+ <h3>Constructor Summary</h3>
149
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
150
+ <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
151
+ <tr>
152
+ <th class="colOne" scope="col">Constructor and Description</th>
153
+ </tr>
154
+ <tr class="altColor">
155
+ <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html#FutureMessage-M-">FutureMessage</a></span>(<a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="type parameter in FutureMessage">M</a>&nbsp;message)</code>&nbsp;</td>
156
+ </tr>
157
+ </table>
158
+ </li>
159
+ </ul>
160
+ <!-- ========== METHOD SUMMARY =========== -->
161
+ <ul class="blockList">
162
+ <li class="blockList"><a name="method.summary">
163
+ <!-- -->
164
+ </a>
165
+ <h3>Method Summary</h3>
166
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
167
+ <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
168
+ <tr>
169
+ <th class="colFirst" scope="col">Modifier and Type</th>
170
+ <th class="colLast" scope="col">Method and Description</th>
171
+ </tr>
172
+ <tr id="i0" class="altColor">
173
+ <td class="colFirst"><code>void</code></td>
174
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html#delivered--">delivered</a></span>()</code>
175
+ <div class="block">This method should be called by <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> implementations when the message was successfully
176
+ added to the log.</div>
177
+ </td>
178
+ </tr>
179
+ <tr id="i1" class="rowColor">
180
+ <td class="colFirst"><code>void</code></td>
181
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html#failed-java.lang.Throwable-">failed</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;exception)</code>
182
+ <div class="block">This method should be called by <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> implementations when the message could not be added to the log
183
+ with the respective exception object.</div>
184
+ </td>
185
+ </tr>
186
+ <tr id="i2" class="altColor">
187
+ <td class="colFirst"><code><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="type parameter in FutureMessage">M</a></code></td>
188
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html#getMessage--">getMessage</a></span>()</code>
189
+ <div class="block">Returns the actual message that was added to the log</div>
190
+ </td>
191
+ </tr>
192
+ <tr id="i3" class="rowColor">
193
+ <td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
194
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html#toString--">toString</a></span>()</code>&nbsp;</td>
195
+ </tr>
196
+ </table>
197
+ <ul class="blockList">
198
+ <li class="blockList"><a name="methods.inherited.from.class.com.google.common.util.concurrent.AbstractFuture">
199
+ <!-- -->
200
+ </a>
201
+ <h3>Methods inherited from class&nbsp;com.google.common.util.concurrent.AbstractFuture</h3>
202
+ <code>addListener, afterDone, cancel, get, get, interruptTask, isCancelled, isDone, pendingToString, set, setException, setFuture, tryInternalFastPathGetFailure, wasInterrupted</code></li>
203
+ </ul>
204
+ <ul class="blockList">
205
+ <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
206
+ <!-- -->
207
+ </a>
208
+ <h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
209
+ <code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
210
+ </ul>
211
+ </li>
212
+ </ul>
213
+ </li>
214
+ </ul>
215
+ </div>
216
+ <div class="details">
217
+ <ul class="blockList">
218
+ <li class="blockList">
219
+ <!-- ========= CONSTRUCTOR DETAIL ======== -->
220
+ <ul class="blockList">
221
+ <li class="blockList"><a name="constructor.detail">
222
+ <!-- -->
223
+ </a>
224
+ <h3>Constructor Detail</h3>
225
+ <a name="FutureMessage-org.janusgraph.diskstorage.log.Message-">
226
+ <!-- -->
227
+ </a><a name="FutureMessage-M-">
228
+ <!-- -->
229
+ </a>
230
+ <ul class="blockListLast">
231
+ <li class="blockList">
232
+ <h4>FutureMessage</h4>
233
+ <pre>public&nbsp;FutureMessage(<a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="type parameter in FutureMessage">M</a>&nbsp;message)</pre>
234
+ </li>
235
+ </ul>
236
+ </li>
237
+ </ul>
238
+ <!-- ============ METHOD DETAIL ========== -->
239
+ <ul class="blockList">
240
+ <li class="blockList"><a name="method.detail">
241
+ <!-- -->
242
+ </a>
243
+ <h3>Method Detail</h3>
244
+ <a name="getMessage--">
245
+ <!-- -->
246
+ </a>
247
+ <ul class="blockList">
248
+ <li class="blockList">
249
+ <h4>getMessage</h4>
250
+ <pre>public&nbsp;<a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="type parameter in FutureMessage">M</a>&nbsp;getMessage()</pre>
251
+ <div class="block">Returns the actual message that was added to the log</div>
252
+ <dl>
253
+ <dt><span class="returnLabel">Returns:</span></dt>
254
+ </dl>
255
+ </li>
256
+ </ul>
257
+ <a name="delivered--">
258
+ <!-- -->
259
+ </a>
260
+ <ul class="blockList">
261
+ <li class="blockList">
262
+ <h4>delivered</h4>
263
+ <pre>public&nbsp;void&nbsp;delivered()</pre>
264
+ <div class="block">This method should be called by <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> implementations when the message was successfully
265
+ added to the log.</div>
266
+ </li>
267
+ </ul>
268
+ <a name="failed-java.lang.Throwable-">
269
+ <!-- -->
270
+ </a>
271
+ <ul class="blockList">
272
+ <li class="blockList">
273
+ <h4>failed</h4>
274
+ <pre>public&nbsp;void&nbsp;failed(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;exception)</pre>
275
+ <div class="block">This method should be called by <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> implementations when the message could not be added to the log
276
+ with the respective exception object.</div>
277
+ <dl>
278
+ <dt><span class="paramLabel">Parameters:</span></dt>
279
+ <dd><code>exception</code> - </dd>
280
+ </dl>
281
+ </li>
282
+ </ul>
283
+ <a name="toString--">
284
+ <!-- -->
285
+ </a>
286
+ <ul class="blockListLast">
287
+ <li class="blockList">
288
+ <h4>toString</h4>
289
+ <pre>public&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;toString()</pre>
290
+ <dl>
291
+ <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
292
+ <dd><code>toString</code>&nbsp;in class&nbsp;<code>com.google.common.util.concurrent.AbstractFuture&lt;<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</code></dd>
293
+ </dl>
294
+ </li>
295
+ </ul>
296
+ </li>
297
+ </ul>
298
+ </li>
299
+ </ul>
300
+ </div>
301
+ </div>
302
+ <!-- ========= END OF CLASS DATA ========= -->
303
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
304
+ <div class="bottomNav"><a name="navbar.bottom">
305
+ <!-- -->
306
+ </a>
307
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
308
+ <a name="navbar.bottom.firstrow">
309
+ <!-- -->
310
+ </a>
311
+ <ul class="navList" title="Navigation">
312
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
313
+ <li><a href="package-summary.html">Package</a></li>
314
+ <li class="navBarCell1Rev">Class</li>
315
+ <li><a href="class-use/FutureMessage.html">Use</a></li>
316
+ <li><a href="package-tree.html">Tree</a></li>
317
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
318
+ <li><a href="../../../../../index-all.html">Index</a></li>
319
+ <li><a href="../../../../../help-doc.html">Help</a></li>
320
+ </ul>
321
+ </div>
322
+ <div class="subNav">
323
+ <ul class="navList">
324
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
325
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/ProcessMessageJob.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
326
+ </ul>
327
+ <ul class="navList">
328
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/FutureMessage.html" target="_top">Frames</a></li>
329
+ <li><a href="FutureMessage.html" target="_top">No&nbsp;Frames</a></li>
330
+ </ul>
331
+ <ul class="navList" id="allclasses_navbar_bottom">
332
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
333
+ </ul>
334
+ <div>
335
+ <script type="text/javascript"><!--
336
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
337
+ if(window==top) {
338
+ allClassesLink.style.display = "block";
339
+ }
340
+ else {
341
+ allClassesLink.style.display = "none";
342
+ }
343
+ //-->
344
+ </script>
345
+ </div>
346
+ <div>
347
+ <ul class="subNavList">
348
+ <li>Summary:&nbsp;</li>
349
+ <li>Nested&nbsp;|&nbsp;</li>
350
+ <li>Field&nbsp;|&nbsp;</li>
351
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
352
+ <li><a href="#method.summary">Method</a></li>
353
+ </ul>
354
+ <ul class="subNavList">
355
+ <li>Detail:&nbsp;</li>
356
+ <li>Field&nbsp;|&nbsp;</li>
357
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
358
+ <li><a href="#method.detail">Method</a></li>
359
+ </ul>
360
+ </div>
361
+ <a name="skip.navbar.bottom">
362
+ <!-- -->
363
+ </a></div>
364
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
365
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
366
+ </body>
367
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/ProcessMessageJob.html ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:28 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>ProcessMessageJob (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="ProcessMessageJob (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ var methods = {"i0":10};
23
+ var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
24
+ var altColor = "altColor";
25
+ var rowColor = "rowColor";
26
+ var tableTab = "tableTab";
27
+ var activeTableTab = "activeTableTab";
28
+ </script>
29
+ <noscript>
30
+ <div>JavaScript is disabled on your browser.</div>
31
+ </noscript>
32
+ <!-- ========= START OF TOP NAVBAR ======= -->
33
+ <div class="topNav"><a name="navbar.top">
34
+ <!-- -->
35
+ </a>
36
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
37
+ <a name="navbar.top.firstrow">
38
+ <!-- -->
39
+ </a>
40
+ <ul class="navList" title="Navigation">
41
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
42
+ <li><a href="package-summary.html">Package</a></li>
43
+ <li class="navBarCell1Rev">Class</li>
44
+ <li><a href="class-use/ProcessMessageJob.html">Use</a></li>
45
+ <li><a href="package-tree.html">Tree</a></li>
46
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
47
+ <li><a href="../../../../../index-all.html">Index</a></li>
48
+ <li><a href="../../../../../help-doc.html">Help</a></li>
49
+ </ul>
50
+ </div>
51
+ <div class="subNav">
52
+ <ul class="navList">
53
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
54
+ <li>Next&nbsp;Class</li>
55
+ </ul>
56
+ <ul class="navList">
57
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/ProcessMessageJob.html" target="_top">Frames</a></li>
58
+ <li><a href="ProcessMessageJob.html" target="_top">No&nbsp;Frames</a></li>
59
+ </ul>
60
+ <ul class="navList" id="allclasses_navbar_top">
61
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
62
+ </ul>
63
+ <div>
64
+ <script type="text/javascript"><!--
65
+ allClassesLink = document.getElementById("allclasses_navbar_top");
66
+ if(window==top) {
67
+ allClassesLink.style.display = "block";
68
+ }
69
+ else {
70
+ allClassesLink.style.display = "none";
71
+ }
72
+ //-->
73
+ </script>
74
+ </div>
75
+ <div>
76
+ <ul class="subNavList">
77
+ <li>Summary:&nbsp;</li>
78
+ <li>Nested&nbsp;|&nbsp;</li>
79
+ <li>Field&nbsp;|&nbsp;</li>
80
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
81
+ <li><a href="#method.summary">Method</a></li>
82
+ </ul>
83
+ <ul class="subNavList">
84
+ <li>Detail:&nbsp;</li>
85
+ <li>Field&nbsp;|&nbsp;</li>
86
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
87
+ <li><a href="#method.detail">Method</a></li>
88
+ </ul>
89
+ </div>
90
+ <a name="skip.navbar.top">
91
+ <!-- -->
92
+ </a></div>
93
+ <!-- ========= END OF TOP NAVBAR ========= -->
94
+ <!-- ======== START OF CLASS DATA ======== -->
95
+ <div class="header">
96
+ <div class="subTitle">org.janusgraph.diskstorage.log.util</div>
97
+ <h2 title="Class ProcessMessageJob" class="title">Class ProcessMessageJob</h2>
98
+ </div>
99
+ <div class="contentContainer">
100
+ <ul class="inheritance">
101
+ <li><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
102
+ <li>
103
+ <ul class="inheritance">
104
+ <li>org.janusgraph.diskstorage.log.util.ProcessMessageJob</li>
105
+ </ul>
106
+ </li>
107
+ </ul>
108
+ <div class="description">
109
+ <ul class="blockList">
110
+ <li class="blockList">
111
+ <dl>
112
+ <dt>All Implemented Interfaces:</dt>
113
+ <dd><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true" title="class or interface in java.lang">Runnable</a></dd>
114
+ </dl>
115
+ <hr>
116
+ <br>
117
+ <pre>public class <span class="typeNameLabel">ProcessMessageJob</span>
118
+ extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>
119
+ implements <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true" title="class or interface in java.lang">Runnable</a></pre>
120
+ <div class="block">Helper class for processing read messages with the registered message readers.
121
+ Simple implementation of a <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true" title="class or interface in java.lang"><code>Runnable</code></a>.</div>
122
+ <dl>
123
+ <dt><span class="simpleTagLabel">Author:</span></dt>
124
+ <dd>Matthias Broecheler (me@matthiasb.com)</dd>
125
+ </dl>
126
+ </li>
127
+ </ul>
128
+ </div>
129
+ <div class="summary">
130
+ <ul class="blockList">
131
+ <li class="blockList">
132
+ <!-- ======== CONSTRUCTOR SUMMARY ======== -->
133
+ <ul class="blockList">
134
+ <li class="blockList"><a name="constructor.summary">
135
+ <!-- -->
136
+ </a>
137
+ <h3>Constructor Summary</h3>
138
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
139
+ <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
140
+ <tr>
141
+ <th class="colOne" scope="col">Constructor and Description</th>
142
+ </tr>
143
+ <tr class="altColor">
144
+ <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/ProcessMessageJob.html#ProcessMessageJob-org.janusgraph.diskstorage.log.Message-org.janusgraph.diskstorage.log.MessageReader-">ProcessMessageJob</a></span>(<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&nbsp;message,
145
+ <a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html" title="interface in org.janusgraph.diskstorage.log">MessageReader</a>&nbsp;reader)</code>&nbsp;</td>
146
+ </tr>
147
+ </table>
148
+ </li>
149
+ </ul>
150
+ <!-- ========== METHOD SUMMARY =========== -->
151
+ <ul class="blockList">
152
+ <li class="blockList"><a name="method.summary">
153
+ <!-- -->
154
+ </a>
155
+ <h3>Method Summary</h3>
156
+ <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
157
+ <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
158
+ <tr>
159
+ <th class="colFirst" scope="col">Modifier and Type</th>
160
+ <th class="colLast" scope="col">Method and Description</th>
161
+ </tr>
162
+ <tr id="i0" class="altColor">
163
+ <td class="colFirst"><code>void</code></td>
164
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/janusgraph/diskstorage/log/util/ProcessMessageJob.html#run--">run</a></span>()</code>&nbsp;</td>
165
+ </tr>
166
+ </table>
167
+ <ul class="blockList">
168
+ <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
169
+ <!-- -->
170
+ </a>
171
+ <h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
172
+ <code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
173
+ </ul>
174
+ </li>
175
+ </ul>
176
+ </li>
177
+ </ul>
178
+ </div>
179
+ <div class="details">
180
+ <ul class="blockList">
181
+ <li class="blockList">
182
+ <!-- ========= CONSTRUCTOR DETAIL ======== -->
183
+ <ul class="blockList">
184
+ <li class="blockList"><a name="constructor.detail">
185
+ <!-- -->
186
+ </a>
187
+ <h3>Constructor Detail</h3>
188
+ <a name="ProcessMessageJob-org.janusgraph.diskstorage.log.Message-org.janusgraph.diskstorage.log.MessageReader-">
189
+ <!-- -->
190
+ </a>
191
+ <ul class="blockListLast">
192
+ <li class="blockList">
193
+ <h4>ProcessMessageJob</h4>
194
+ <pre>public&nbsp;ProcessMessageJob(<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&nbsp;message,
195
+ <a href="../../../../../org/janusgraph/diskstorage/log/MessageReader.html" title="interface in org.janusgraph.diskstorage.log">MessageReader</a>&nbsp;reader)</pre>
196
+ </li>
197
+ </ul>
198
+ </li>
199
+ </ul>
200
+ <!-- ============ METHOD DETAIL ========== -->
201
+ <ul class="blockList">
202
+ <li class="blockList"><a name="method.detail">
203
+ <!-- -->
204
+ </a>
205
+ <h3>Method Detail</h3>
206
+ <a name="run--">
207
+ <!-- -->
208
+ </a>
209
+ <ul class="blockListLast">
210
+ <li class="blockList">
211
+ <h4>run</h4>
212
+ <pre>public&nbsp;void&nbsp;run()</pre>
213
+ <dl>
214
+ <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
215
+ <dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true#run--" title="class or interface in java.lang">run</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true" title="class or interface in java.lang">Runnable</a></code></dd>
216
+ </dl>
217
+ </li>
218
+ </ul>
219
+ </li>
220
+ </ul>
221
+ </li>
222
+ </ul>
223
+ </div>
224
+ </div>
225
+ <!-- ========= END OF CLASS DATA ========= -->
226
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
227
+ <div class="bottomNav"><a name="navbar.bottom">
228
+ <!-- -->
229
+ </a>
230
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
231
+ <a name="navbar.bottom.firstrow">
232
+ <!-- -->
233
+ </a>
234
+ <ul class="navList" title="Navigation">
235
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
236
+ <li><a href="package-summary.html">Package</a></li>
237
+ <li class="navBarCell1Rev">Class</li>
238
+ <li><a href="class-use/ProcessMessageJob.html">Use</a></li>
239
+ <li><a href="package-tree.html">Tree</a></li>
240
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
241
+ <li><a href="../../../../../index-all.html">Index</a></li>
242
+ <li><a href="../../../../../help-doc.html">Help</a></li>
243
+ </ul>
244
+ </div>
245
+ <div class="subNav">
246
+ <ul class="navList">
247
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
248
+ <li>Next&nbsp;Class</li>
249
+ </ul>
250
+ <ul class="navList">
251
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/ProcessMessageJob.html" target="_top">Frames</a></li>
252
+ <li><a href="ProcessMessageJob.html" target="_top">No&nbsp;Frames</a></li>
253
+ </ul>
254
+ <ul class="navList" id="allclasses_navbar_bottom">
255
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
256
+ </ul>
257
+ <div>
258
+ <script type="text/javascript"><!--
259
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
260
+ if(window==top) {
261
+ allClassesLink.style.display = "block";
262
+ }
263
+ else {
264
+ allClassesLink.style.display = "none";
265
+ }
266
+ //-->
267
+ </script>
268
+ </div>
269
+ <div>
270
+ <ul class="subNavList">
271
+ <li>Summary:&nbsp;</li>
272
+ <li>Nested&nbsp;|&nbsp;</li>
273
+ <li>Field&nbsp;|&nbsp;</li>
274
+ <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
275
+ <li><a href="#method.summary">Method</a></li>
276
+ </ul>
277
+ <ul class="subNavList">
278
+ <li>Detail:&nbsp;</li>
279
+ <li>Field&nbsp;|&nbsp;</li>
280
+ <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
281
+ <li><a href="#method.detail">Method</a></li>
282
+ </ul>
283
+ </div>
284
+ <a name="skip.navbar.bottom">
285
+ <!-- -->
286
+ </a></div>
287
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
288
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
289
+ </body>
290
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/class-use/AbstractMessage.html ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Class org.janusgraph.diskstorage.log.util.AbstractMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Class org.janusgraph.diskstorage.log.util.AbstractMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="../package-summary.html">Package</a></li>
37
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util">Class</a></li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="../package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/util/class-use/AbstractMessage.html" target="_top">Frames</a></li>
52
+ <li><a href="AbstractMessage.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h2 title="Uses of Class org.janusgraph.diskstorage.log.util.AbstractMessage" class="title">Uses of Class<br>org.janusgraph.diskstorage.log.util.AbstractMessage</h2>
75
+ </div>
76
+ <div class="classUseContainer">
77
+ <ul class="blockList">
78
+ <li class="blockList">
79
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
80
+ <caption><span>Packages that use <a href="../../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util">AbstractMessage</a></span><span class="tabEnd">&nbsp;</span></caption>
81
+ <tr>
82
+ <th class="colFirst" scope="col">Package</th>
83
+ <th class="colLast" scope="col">Description</th>
84
+ </tr>
85
+ <tbody>
86
+ <tr class="altColor">
87
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage.log.kcvs">org.janusgraph.diskstorage.log.kcvs</a></td>
88
+ <td class="colLast">&nbsp;</td>
89
+ </tr>
90
+ </tbody>
91
+ </table>
92
+ </li>
93
+ <li class="blockList">
94
+ <ul class="blockList">
95
+ <li class="blockList"><a name="org.janusgraph.diskstorage.log.kcvs">
96
+ <!-- -->
97
+ </a>
98
+ <h3>Uses of <a href="../../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util">AbstractMessage</a> in <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a></h3>
99
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
100
+ <caption><span>Subclasses of <a href="../../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util">AbstractMessage</a> in <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a></span><span class="tabEnd">&nbsp;</span></caption>
101
+ <tr>
102
+ <th class="colFirst" scope="col">Modifier and Type</th>
103
+ <th class="colLast" scope="col">Class and Description</th>
104
+ </tr>
105
+ <tbody>
106
+ <tr class="altColor">
107
+ <td class="colFirst"><code>class&nbsp;</code></td>
108
+ <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSMessage.html" title="class in org.janusgraph.diskstorage.log.kcvs">KCVSMessage</a></span></code>
109
+ <div class="block">Implementation of <a href="../../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util"><code>AbstractMessage</code></a> for <a href="../../../../../../org/janusgraph/diskstorage/log/kcvs/KCVSLog.html" title="class in org.janusgraph.diskstorage.log.kcvs"><code>KCVSLog</code></a>.</div>
110
+ </td>
111
+ </tr>
112
+ </tbody>
113
+ </table>
114
+ </li>
115
+ </ul>
116
+ </li>
117
+ </ul>
118
+ </div>
119
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
120
+ <div class="bottomNav"><a name="navbar.bottom">
121
+ <!-- -->
122
+ </a>
123
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
124
+ <a name="navbar.bottom.firstrow">
125
+ <!-- -->
126
+ </a>
127
+ <ul class="navList" title="Navigation">
128
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
129
+ <li><a href="../package-summary.html">Package</a></li>
130
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util">Class</a></li>
131
+ <li class="navBarCell1Rev">Use</li>
132
+ <li><a href="../package-tree.html">Tree</a></li>
133
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
134
+ <li><a href="../../../../../../index-all.html">Index</a></li>
135
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
136
+ </ul>
137
+ </div>
138
+ <div class="subNav">
139
+ <ul class="navList">
140
+ <li>Prev</li>
141
+ <li>Next</li>
142
+ </ul>
143
+ <ul class="navList">
144
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/util/class-use/AbstractMessage.html" target="_top">Frames</a></li>
145
+ <li><a href="AbstractMessage.html" target="_top">No&nbsp;Frames</a></li>
146
+ </ul>
147
+ <ul class="navList" id="allclasses_navbar_bottom">
148
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
149
+ </ul>
150
+ <div>
151
+ <script type="text/javascript"><!--
152
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
153
+ if(window==top) {
154
+ allClassesLink.style.display = "block";
155
+ }
156
+ else {
157
+ allClassesLink.style.display = "none";
158
+ }
159
+ //-->
160
+ </script>
161
+ </div>
162
+ <a name="skip.navbar.bottom">
163
+ <!-- -->
164
+ </a></div>
165
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
166
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
167
+ </body>
168
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/class-use/FutureMessage.html ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Class org.janusgraph.diskstorage.log.util.FutureMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Class org.janusgraph.diskstorage.log.util.FutureMessage (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="../package-summary.html">Package</a></li>
37
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="class in org.janusgraph.diskstorage.log.util">Class</a></li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="../package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/util/class-use/FutureMessage.html" target="_top">Frames</a></li>
52
+ <li><a href="FutureMessage.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h2 title="Uses of Class org.janusgraph.diskstorage.log.util.FutureMessage" class="title">Uses of Class<br>org.janusgraph.diskstorage.log.util.FutureMessage</h2>
75
+ </div>
76
+ <div class="classUseContainer">No usage of org.janusgraph.diskstorage.log.util.FutureMessage</div>
77
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
78
+ <div class="bottomNav"><a name="navbar.bottom">
79
+ <!-- -->
80
+ </a>
81
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
82
+ <a name="navbar.bottom.firstrow">
83
+ <!-- -->
84
+ </a>
85
+ <ul class="navList" title="Navigation">
86
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
87
+ <li><a href="../package-summary.html">Package</a></li>
88
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="class in org.janusgraph.diskstorage.log.util">Class</a></li>
89
+ <li class="navBarCell1Rev">Use</li>
90
+ <li><a href="../package-tree.html">Tree</a></li>
91
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
92
+ <li><a href="../../../../../../index-all.html">Index</a></li>
93
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
94
+ </ul>
95
+ </div>
96
+ <div class="subNav">
97
+ <ul class="navList">
98
+ <li>Prev</li>
99
+ <li>Next</li>
100
+ </ul>
101
+ <ul class="navList">
102
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/util/class-use/FutureMessage.html" target="_top">Frames</a></li>
103
+ <li><a href="FutureMessage.html" target="_top">No&nbsp;Frames</a></li>
104
+ </ul>
105
+ <ul class="navList" id="allclasses_navbar_bottom">
106
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
107
+ </ul>
108
+ <div>
109
+ <script type="text/javascript"><!--
110
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
111
+ if(window==top) {
112
+ allClassesLink.style.display = "block";
113
+ }
114
+ else {
115
+ allClassesLink.style.display = "none";
116
+ }
117
+ //-->
118
+ </script>
119
+ </div>
120
+ <a name="skip.navbar.bottom">
121
+ <!-- -->
122
+ </a></div>
123
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
124
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
125
+ </body>
126
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/class-use/ProcessMessageJob.html ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Class org.janusgraph.diskstorage.log.util.ProcessMessageJob (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Class org.janusgraph.diskstorage.log.util.ProcessMessageJob (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="../package-summary.html">Package</a></li>
37
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/util/ProcessMessageJob.html" title="class in org.janusgraph.diskstorage.log.util">Class</a></li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="../package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/util/class-use/ProcessMessageJob.html" target="_top">Frames</a></li>
52
+ <li><a href="ProcessMessageJob.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h2 title="Uses of Class org.janusgraph.diskstorage.log.util.ProcessMessageJob" class="title">Uses of Class<br>org.janusgraph.diskstorage.log.util.ProcessMessageJob</h2>
75
+ </div>
76
+ <div class="classUseContainer">No usage of org.janusgraph.diskstorage.log.util.ProcessMessageJob</div>
77
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
78
+ <div class="bottomNav"><a name="navbar.bottom">
79
+ <!-- -->
80
+ </a>
81
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
82
+ <a name="navbar.bottom.firstrow">
83
+ <!-- -->
84
+ </a>
85
+ <ul class="navList" title="Navigation">
86
+ <li><a href="../../../../../../overview-summary.html">Overview</a></li>
87
+ <li><a href="../package-summary.html">Package</a></li>
88
+ <li><a href="../../../../../../org/janusgraph/diskstorage/log/util/ProcessMessageJob.html" title="class in org.janusgraph.diskstorage.log.util">Class</a></li>
89
+ <li class="navBarCell1Rev">Use</li>
90
+ <li><a href="../package-tree.html">Tree</a></li>
91
+ <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
92
+ <li><a href="../../../../../../index-all.html">Index</a></li>
93
+ <li><a href="../../../../../../help-doc.html">Help</a></li>
94
+ </ul>
95
+ </div>
96
+ <div class="subNav">
97
+ <ul class="navList">
98
+ <li>Prev</li>
99
+ <li>Next</li>
100
+ </ul>
101
+ <ul class="navList">
102
+ <li><a href="../../../../../../index.html?org/janusgraph/diskstorage/log/util/class-use/ProcessMessageJob.html" target="_top">Frames</a></li>
103
+ <li><a href="ProcessMessageJob.html" target="_top">No&nbsp;Frames</a></li>
104
+ </ul>
105
+ <ul class="navList" id="allclasses_navbar_bottom">
106
+ <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
107
+ </ul>
108
+ <div>
109
+ <script type="text/javascript"><!--
110
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
111
+ if(window==top) {
112
+ allClassesLink.style.display = "block";
113
+ }
114
+ else {
115
+ allClassesLink.style.display = "none";
116
+ }
117
+ //-->
118
+ </script>
119
+ </div>
120
+ <a name="skip.navbar.bottom">
121
+ <!-- -->
122
+ </a></div>
123
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
124
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
125
+ </body>
126
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/package-frame.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>org.janusgraph.diskstorage.log.util (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <h1 class="bar"><a href="../../../../../org/janusgraph/diskstorage/log/util/package-summary.html" target="classFrame">org.janusgraph.diskstorage.log.util</a></h1>
14
+ <div class="indexContainer">
15
+ <h2 title="Classes">Classes</h2>
16
+ <ul title="Classes">
17
+ <li><a href="AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util" target="classFrame">AbstractMessage</a></li>
18
+ <li><a href="FutureMessage.html" title="class in org.janusgraph.diskstorage.log.util" target="classFrame">FutureMessage</a></li>
19
+ <li><a href="ProcessMessageJob.html" title="class in org.janusgraph.diskstorage.log.util" target="classFrame">ProcessMessageJob</a></li>
20
+ </ul>
21
+ </div>
22
+ </body>
23
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/package-summary.html ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>org.janusgraph.diskstorage.log.util (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="org.janusgraph.diskstorage.log.util (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
36
+ <li class="navBarCell1Rev">Package</li>
37
+ <li>Class</li>
38
+ <li><a href="package-use.html">Use</a></li>
39
+ <li><a href="package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">Prev&nbsp;Package</a></li>
48
+ <li><a href="../../../../../org/janusgraph/diskstorage/util/package-summary.html">Next&nbsp;Package</a></li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/package-summary.html" target="_top">Frames</a></li>
52
+ <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h1 title="Package" class="title">Package&nbsp;org.janusgraph.diskstorage.log.util</h1>
75
+ </div>
76
+ <div class="contentContainer">
77
+ <ul class="blockList">
78
+ <li class="blockList">
79
+ <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
80
+ <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
81
+ <tr>
82
+ <th class="colFirst" scope="col">Class</th>
83
+ <th class="colLast" scope="col">Description</th>
84
+ </tr>
85
+ <tbody>
86
+ <tr class="altColor">
87
+ <td class="colFirst"><a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util">AbstractMessage</a></td>
88
+ <td class="colLast">
89
+ <div class="block">Abstract implementation of <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log"><code>Message</code></a> which exposes the timestamp, sender, and payload
90
+ of a message.</div>
91
+ </td>
92
+ </tr>
93
+ <tr class="rowColor">
94
+ <td class="colFirst"><a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="class in org.janusgraph.diskstorage.log.util">FutureMessage</a>&lt;M extends <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>&gt;</td>
95
+ <td class="colLast">
96
+ <div class="block">Implementation of a <a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent"><code>Future</code></a> for <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log"><code>Message</code></a>s that
97
+ are being added to the <a href="../../../../../org/janusgraph/diskstorage/log/Log.html" title="interface in org.janusgraph.diskstorage.log"><code>Log</code></a> via <a href="../../../../../org/janusgraph/diskstorage/log/Log.html#add-org.janusgraph.diskstorage.StaticBuffer-"><code>Log.add(org.janusgraph.diskstorage.StaticBuffer)</code></a>.</div>
98
+ </td>
99
+ </tr>
100
+ <tr class="altColor">
101
+ <td class="colFirst"><a href="../../../../../org/janusgraph/diskstorage/log/util/ProcessMessageJob.html" title="class in org.janusgraph.diskstorage.log.util">ProcessMessageJob</a></td>
102
+ <td class="colLast">
103
+ <div class="block">Helper class for processing read messages with the registered message readers.</div>
104
+ </td>
105
+ </tr>
106
+ </tbody>
107
+ </table>
108
+ </li>
109
+ </ul>
110
+ </div>
111
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
112
+ <div class="bottomNav"><a name="navbar.bottom">
113
+ <!-- -->
114
+ </a>
115
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
116
+ <a name="navbar.bottom.firstrow">
117
+ <!-- -->
118
+ </a>
119
+ <ul class="navList" title="Navigation">
120
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
121
+ <li class="navBarCell1Rev">Package</li>
122
+ <li>Class</li>
123
+ <li><a href="package-use.html">Use</a></li>
124
+ <li><a href="package-tree.html">Tree</a></li>
125
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
126
+ <li><a href="../../../../../index-all.html">Index</a></li>
127
+ <li><a href="../../../../../help-doc.html">Help</a></li>
128
+ </ul>
129
+ </div>
130
+ <div class="subNav">
131
+ <ul class="navList">
132
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">Prev&nbsp;Package</a></li>
133
+ <li><a href="../../../../../org/janusgraph/diskstorage/util/package-summary.html">Next&nbsp;Package</a></li>
134
+ </ul>
135
+ <ul class="navList">
136
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/package-summary.html" target="_top">Frames</a></li>
137
+ <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li>
138
+ </ul>
139
+ <ul class="navList" id="allclasses_navbar_bottom">
140
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
141
+ </ul>
142
+ <div>
143
+ <script type="text/javascript"><!--
144
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
145
+ if(window==top) {
146
+ allClassesLink.style.display = "block";
147
+ }
148
+ else {
149
+ allClassesLink.style.display = "none";
150
+ }
151
+ //-->
152
+ </script>
153
+ </div>
154
+ <a name="skip.navbar.bottom">
155
+ <!-- -->
156
+ </a></div>
157
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
158
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
159
+ </body>
160
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/package-tree.html ADDED
@@ -0,0 +1,149 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:29 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>org.janusgraph.diskstorage.log.util Class Hierarchy (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="org.janusgraph.diskstorage.log.util Class Hierarchy (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="package-summary.html">Package</a></li>
37
+ <li>Class</li>
38
+ <li>Use</li>
39
+ <li class="navBarCell1Rev">Tree</li>
40
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-tree.html">Prev</a></li>
48
+ <li><a href="../../../../../org/janusgraph/diskstorage/util/package-tree.html">Next</a></li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/package-tree.html" target="_top">Frames</a></li>
52
+ <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h1 class="title">Hierarchy For Package org.janusgraph.diskstorage.log.util</h1>
75
+ <span class="packageHierarchyLabel">Package Hierarchies:</span>
76
+ <ul class="horizontal">
77
+ <li><a href="../../../../../overview-tree.html">All Packages</a></li>
78
+ </ul>
79
+ </div>
80
+ <div class="contentContainer">
81
+ <h2 title="Class Hierarchy">Class Hierarchy</h2>
82
+ <ul>
83
+ <li type="circle">java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
84
+ <ul>
85
+ <li type="circle">org.janusgraph.diskstorage.log.util.<a href="../../../../../org/janusgraph/diskstorage/log/util/AbstractMessage.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">AbstractMessage</span></a> (implements org.janusgraph.diskstorage.log.<a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log">Message</a>)</li>
86
+ <li type="circle">com.google.common.util.concurrent.internal.InternalFutureFailureAccess
87
+ <ul>
88
+ <li type="circle">com.google.common.util.concurrent.AbstractFuture&lt;V&gt; (implements com.google.common.util.concurrent.ListenableFuture&lt;V&gt;)
89
+ <ul>
90
+ <li type="circle">org.janusgraph.diskstorage.log.util.<a href="../../../../../org/janusgraph/diskstorage/log/util/FutureMessage.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">FutureMessage</span></a>&lt;M&gt;</li>
91
+ </ul>
92
+ </li>
93
+ </ul>
94
+ </li>
95
+ <li type="circle">org.janusgraph.diskstorage.log.util.<a href="../../../../../org/janusgraph/diskstorage/log/util/ProcessMessageJob.html" title="class in org.janusgraph.diskstorage.log.util"><span class="typeNameLink">ProcessMessageJob</span></a> (implements java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true" title="class or interface in java.lang">Runnable</a>)</li>
96
+ </ul>
97
+ </li>
98
+ </ul>
99
+ </div>
100
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
101
+ <div class="bottomNav"><a name="navbar.bottom">
102
+ <!-- -->
103
+ </a>
104
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
105
+ <a name="navbar.bottom.firstrow">
106
+ <!-- -->
107
+ </a>
108
+ <ul class="navList" title="Navigation">
109
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
110
+ <li><a href="package-summary.html">Package</a></li>
111
+ <li>Class</li>
112
+ <li>Use</li>
113
+ <li class="navBarCell1Rev">Tree</li>
114
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
115
+ <li><a href="../../../../../index-all.html">Index</a></li>
116
+ <li><a href="../../../../../help-doc.html">Help</a></li>
117
+ </ul>
118
+ </div>
119
+ <div class="subNav">
120
+ <ul class="navList">
121
+ <li><a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-tree.html">Prev</a></li>
122
+ <li><a href="../../../../../org/janusgraph/diskstorage/util/package-tree.html">Next</a></li>
123
+ </ul>
124
+ <ul class="navList">
125
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/package-tree.html" target="_top">Frames</a></li>
126
+ <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li>
127
+ </ul>
128
+ <ul class="navList" id="allclasses_navbar_bottom">
129
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
130
+ </ul>
131
+ <div>
132
+ <script type="text/javascript"><!--
133
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
134
+ if(window==top) {
135
+ allClassesLink.style.display = "block";
136
+ }
137
+ else {
138
+ allClassesLink.style.display = "none";
139
+ }
140
+ //-->
141
+ </script>
142
+ </div>
143
+ <a name="skip.navbar.bottom">
144
+ <!-- -->
145
+ </a></div>
146
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
147
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
148
+ </body>
149
+ </html>
platform/dbops/binaries/janusgraph/javadocs/org/janusgraph/diskstorage/log/util/package-use.html ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
+ <!-- NewPage -->
3
+ <html lang>
4
+ <head>
5
+ <!-- Generated by javadoc (1.8.0_382) on Fri Nov 08 23:01:30 UTC 2024 -->
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7
+ <title>Uses of Package org.janusgraph.diskstorage.log.util (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)</title>
8
+ <meta name="date" content="2024-11-08">
9
+ <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
10
+ <script type="text/javascript" src="../../../../../script.js"></script>
11
+ </head>
12
+ <body>
13
+ <script type="text/javascript"><!--
14
+ try {
15
+ if (location.href.indexOf('is-external=true') == -1) {
16
+ parent.document.title="Uses of Package org.janusgraph.diskstorage.log.util (JanusGraph-Core: Core Library for JanusGraph 1.1.0 API)";
17
+ }
18
+ }
19
+ catch(err) {
20
+ }
21
+ //-->
22
+ </script>
23
+ <noscript>
24
+ <div>JavaScript is disabled on your browser.</div>
25
+ </noscript>
26
+ <!-- ========= START OF TOP NAVBAR ======= -->
27
+ <div class="topNav"><a name="navbar.top">
28
+ <!-- -->
29
+ </a>
30
+ <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
31
+ <a name="navbar.top.firstrow">
32
+ <!-- -->
33
+ </a>
34
+ <ul class="navList" title="Navigation">
35
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
36
+ <li><a href="package-summary.html">Package</a></li>
37
+ <li>Class</li>
38
+ <li class="navBarCell1Rev">Use</li>
39
+ <li><a href="package-tree.html">Tree</a></li>
40
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
41
+ <li><a href="../../../../../index-all.html">Index</a></li>
42
+ <li><a href="../../../../../help-doc.html">Help</a></li>
43
+ </ul>
44
+ </div>
45
+ <div class="subNav">
46
+ <ul class="navList">
47
+ <li>Prev</li>
48
+ <li>Next</li>
49
+ </ul>
50
+ <ul class="navList">
51
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/package-use.html" target="_top">Frames</a></li>
52
+ <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li>
53
+ </ul>
54
+ <ul class="navList" id="allclasses_navbar_top">
55
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
56
+ </ul>
57
+ <div>
58
+ <script type="text/javascript"><!--
59
+ allClassesLink = document.getElementById("allclasses_navbar_top");
60
+ if(window==top) {
61
+ allClassesLink.style.display = "block";
62
+ }
63
+ else {
64
+ allClassesLink.style.display = "none";
65
+ }
66
+ //-->
67
+ </script>
68
+ </div>
69
+ <a name="skip.navbar.top">
70
+ <!-- -->
71
+ </a></div>
72
+ <!-- ========= END OF TOP NAVBAR ========= -->
73
+ <div class="header">
74
+ <h1 title="Uses of Package org.janusgraph.diskstorage.log.util" class="title">Uses of Package<br>org.janusgraph.diskstorage.log.util</h1>
75
+ </div>
76
+ <div class="contentContainer">
77
+ <ul class="blockList">
78
+ <li class="blockList">
79
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
80
+ <caption><span>Packages that use <a href="../../../../../org/janusgraph/diskstorage/log/util/package-summary.html">org.janusgraph.diskstorage.log.util</a></span><span class="tabEnd">&nbsp;</span></caption>
81
+ <tr>
82
+ <th class="colFirst" scope="col">Package</th>
83
+ <th class="colLast" scope="col">Description</th>
84
+ </tr>
85
+ <tbody>
86
+ <tr class="altColor">
87
+ <td class="colFirst"><a href="#org.janusgraph.diskstorage.log.kcvs">org.janusgraph.diskstorage.log.kcvs</a></td>
88
+ <td class="colLast">&nbsp;</td>
89
+ </tr>
90
+ </tbody>
91
+ </table>
92
+ </li>
93
+ <li class="blockList"><a name="org.janusgraph.diskstorage.log.kcvs">
94
+ <!-- -->
95
+ </a>
96
+ <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
97
+ <caption><span>Classes in <a href="../../../../../org/janusgraph/diskstorage/log/util/package-summary.html">org.janusgraph.diskstorage.log.util</a> used by <a href="../../../../../org/janusgraph/diskstorage/log/kcvs/package-summary.html">org.janusgraph.diskstorage.log.kcvs</a></span><span class="tabEnd">&nbsp;</span></caption>
98
+ <tr>
99
+ <th class="colOne" scope="col">Class and Description</th>
100
+ </tr>
101
+ <tbody>
102
+ <tr class="altColor">
103
+ <td class="colOne"><a href="../../../../../org/janusgraph/diskstorage/log/util/class-use/AbstractMessage.html#org.janusgraph.diskstorage.log.kcvs">AbstractMessage</a>
104
+ <div class="block">Abstract implementation of <a href="../../../../../org/janusgraph/diskstorage/log/Message.html" title="interface in org.janusgraph.diskstorage.log"><code>Message</code></a> which exposes the timestamp, sender, and payload
105
+ of a message.</div>
106
+ </td>
107
+ </tr>
108
+ </tbody>
109
+ </table>
110
+ </li>
111
+ </ul>
112
+ </div>
113
+ <!-- ======= START OF BOTTOM NAVBAR ====== -->
114
+ <div class="bottomNav"><a name="navbar.bottom">
115
+ <!-- -->
116
+ </a>
117
+ <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
118
+ <a name="navbar.bottom.firstrow">
119
+ <!-- -->
120
+ </a>
121
+ <ul class="navList" title="Navigation">
122
+ <li><a href="../../../../../overview-summary.html">Overview</a></li>
123
+ <li><a href="package-summary.html">Package</a></li>
124
+ <li>Class</li>
125
+ <li class="navBarCell1Rev">Use</li>
126
+ <li><a href="package-tree.html">Tree</a></li>
127
+ <li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
128
+ <li><a href="../../../../../index-all.html">Index</a></li>
129
+ <li><a href="../../../../../help-doc.html">Help</a></li>
130
+ </ul>
131
+ </div>
132
+ <div class="subNav">
133
+ <ul class="navList">
134
+ <li>Prev</li>
135
+ <li>Next</li>
136
+ </ul>
137
+ <ul class="navList">
138
+ <li><a href="../../../../../index.html?org/janusgraph/diskstorage/log/util/package-use.html" target="_top">Frames</a></li>
139
+ <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li>
140
+ </ul>
141
+ <ul class="navList" id="allclasses_navbar_bottom">
142
+ <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
143
+ </ul>
144
+ <div>
145
+ <script type="text/javascript"><!--
146
+ allClassesLink = document.getElementById("allclasses_navbar_bottom");
147
+ if(window==top) {
148
+ allClassesLink.style.display = "block";
149
+ }
150
+ else {
151
+ allClassesLink.style.display = "none";
152
+ }
153
+ //-->
154
+ </script>
155
+ </div>
156
+ <a name="skip.navbar.bottom">
157
+ <!-- -->
158
+ </a></div>
159
+ <!-- ======== END OF BOTTOM NAVBAR ======= -->
160
+ <p class="legalCopy"><small>Copyright &#169; 2012&#x2013;2024. All rights reserved.</small></p>
161
+ </body>
162
+ </html>
platform/dbops/binaries/java/jre11/NOTICE ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Notices for Eclipse Temurin
2
+
3
+ This content is produced and maintained by the Eclipse Temurin project.
4
+
5
+ * Project home: https://projects.eclipse.org/projects/adoptium.temurin
6
+
7
+ ## Trademarks
8
+
9
+ Eclipse Temurin is a trademark of the Eclipse Foundation. Eclipse, and the
10
+ Eclipse Logo are registered trademarks of the Eclipse Foundation.
11
+
12
+ Java and all Java-based trademarks are trademarks of Oracle Corporation in
13
+ the United States, other countries, or both.
14
+
15
+ ## Copyright
16
+
17
+ All content is the property of the respective authors or their employers.
18
+ For more information regarding authorship of content, please consult the
19
+ listed source code repository logs.
20
+
21
+ ## Declared Project Licenses
22
+
23
+ This program and the accompanying materials are made available under the terms
24
+ of the GNU General Public License, version 2, with the Classpath Exception.
25
+
26
+ Additional information relating to the program and accompanying materials
27
+ license and usage is available as follows.
28
+ * For Eclipse Temurin version 8 see the LICENSE and ASSEMBLY_EXCEPTION files
29
+ in the top level directory of the installation.
30
+ * For Eclipse Temurin version 9 or later see the files under the legal/
31
+ directory in the top level directory of the installation.
32
+
33
+ SPDX-License-Identifier: GPL-2.0 WITH Classpath-exception-2.0
34
+
35
+ ## Source Code
36
+
37
+ The project maintains the following source code repositories which may be
38
+ relevant to this content:
39
+
40
+ * https://github.com/adoptium/temurin-build
41
+ * https://github.com/adoptium/jdk
42
+ * https://github.com/adoptium/jdk8u
43
+ * https://github.com/adoptium/jdk11u
44
+ * https://github.com/adoptium/jdk17u
45
+ * https://github.com/adoptium/jdk20
46
+ * and so on
47
+
48
+ ## Third-party Content
49
+
50
+ This program and accompanying materials contains third-party content.
51
+ * For Eclipse Temurin version 8 see the THIRD_PARTY_LICENSE file in the
52
+ top level directory of the installation.
53
+ * For Eclipse Temurin version 9 or later see the files under the legal/
54
+ directory in the top level directory of the installation.
55
+
56
+ ## Cryptography
57
+
58
+ Content may contain encryption software. The country in which you are currently
59
+ may have restrictions on the import, possession, and use, and/or re-export to
60
+ another country, of encryption software. BEFORE using any encryption software,
61
+ please check the country's laws, regulations and policies concerning the import,
62
+ possession, or use, and re-export of encryption software, to see if this is
63
+ permitted.
platform/dbops/binaries/java/jre11/bin/jaotc ADDED
Binary file (12.9 kB). View file
 
platform/dbops/binaries/java/jre11/bin/java ADDED
Binary file (12.8 kB). View file
 
platform/dbops/binaries/java/jre11/bin/jfr ADDED
Binary file (12.8 kB). View file
 
platform/dbops/binaries/java/jre11/bin/jjs ADDED
Binary file (12.8 kB). View file
 
platform/dbops/binaries/java/jre11/bin/jrunscript ADDED
Binary file (12.8 kB). View file
 
platform/dbops/binaries/java/jre11/bin/keytool ADDED
Binary file (12.8 kB). View file
 
platform/dbops/binaries/java/jre11/bin/pack200 ADDED
Binary file (12.8 kB). View file
 
platform/dbops/binaries/java/jre11/bin/rmid ADDED
Binary file (12.8 kB). View file
 
platform/dbops/binaries/java/jre11/bin/rmiregistry ADDED
Binary file (12.8 kB). View file
 
platform/dbops/binaries/java/jre11/bin/unpack200 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29e235f6738f4d45643f0adb89c8c97e09491dc36093f5362a004cb01c74b880
3
+ size 191048
platform/dbops/binaries/java/jre11/conf/logging.properties ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ############################################################
2
+ # Default Logging Configuration File
3
+ #
4
+ # You can use a different file by specifying a filename
5
+ # with the java.util.logging.config.file system property.
6
+ # For example java -Djava.util.logging.config.file=myfile
7
+ ############################################################
8
+
9
+ ############################################################
10
+ # Global properties
11
+ ############################################################
12
+
13
+ # "handlers" specifies a comma separated list of log Handler
14
+ # classes. These handlers will be installed during VM startup.
15
+ # Note that these classes must be on the system classpath.
16
+ # By default we only configure a ConsoleHandler, which will only
17
+ # show messages at the INFO and above levels.
18
+ handlers= java.util.logging.ConsoleHandler
19
+
20
+ # To also add the FileHandler, use the following line instead.
21
+ #handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
22
+
23
+ # Default global logging level.
24
+ # This specifies which kinds of events are logged across
25
+ # all loggers. For any given facility this global level
26
+ # can be overriden by a facility specific level
27
+ # Note that the ConsoleHandler also has a separate level
28
+ # setting to limit messages printed to the console.
29
+ .level= INFO
30
+
31
+ ############################################################
32
+ # Handler specific properties.
33
+ # Describes specific configuration info for Handlers.
34
+ ############################################################
35
+
36
+ # default file output is in user's home directory.
37
+ java.util.logging.FileHandler.pattern = %h/java%u.log
38
+ java.util.logging.FileHandler.limit = 50000
39
+ java.util.logging.FileHandler.count = 1
40
+ # Default number of locks FileHandler can obtain synchronously.
41
+ # This specifies maximum number of attempts to obtain lock file by FileHandler
42
+ # implemented by incrementing the unique field %u as per FileHandler API documentation.
43
+ java.util.logging.FileHandler.maxLocks = 100
44
+ java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
45
+
46
+ # Limit the message that are printed on the console to INFO and above.
47
+ java.util.logging.ConsoleHandler.level = INFO
48
+ java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
49
+
50
+ # Example to customize the SimpleFormatter output format
51
+ # to print one-line log message like this:
52
+ # <level>: <log message> [<date/time>]
53
+ #
54
+ # java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n
55
+
56
+ ############################################################
57
+ # Facility specific properties.
58
+ # Provides extra control for each logger.
59
+ ############################################################
60
+
61
+ # For example, set the com.xyz.foo logger to only log SEVERE
62
+ # messages:
63
+ com.xyz.foo.level = SEVERE
platform/dbops/binaries/java/jre11/conf/management/jmxremote.access ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ######################################################################
2
+ # Default Access Control File for Remote JMX(TM) Monitoring
3
+ ######################################################################
4
+ #
5
+ # Access control file for Remote JMX API access to monitoring.
6
+ # This file defines the allowed access for different roles. The
7
+ # password file (jmxremote.password by default) defines the roles and their
8
+ # passwords. To be functional, a role must have an entry in
9
+ # both the password and the access files.
10
+ #
11
+ # The default location of this file is $JRE/conf/management/jmxremote.access
12
+ # You can specify an alternate location by specifying a property in
13
+ # the management config file $JRE/conf/management/management.properties
14
+ # (See that file for details)
15
+ #
16
+ # The file format for password and access files is syntactically the same
17
+ # as the Properties file format. The syntax is described in the Javadoc
18
+ # for java.util.Properties.load.
19
+ # A typical access file has multiple lines, where each line is blank,
20
+ # a comment (like this one), or an access control entry.
21
+ #
22
+ # An access control entry consists of a role name, and an
23
+ # associated access level. The role name is any string that does not
24
+ # itself contain spaces or tabs. It corresponds to an entry in the
25
+ # password file (jmxremote.password). The access level is one of the
26
+ # following:
27
+ # "readonly" grants access to read attributes of MBeans.
28
+ # For monitoring, this means that a remote client in this
29
+ # role can read measurements but cannot perform any action
30
+ # that changes the environment of the running program.
31
+ # "readwrite" grants access to read and write attributes of MBeans,
32
+ # to invoke operations on them, and optionally
33
+ # to create or remove them. This access should be granted
34
+ # only to trusted clients, since they can potentially
35
+ # interfere with the smooth operation of a running program.
36
+ #
37
+ # The "readwrite" access level can optionally be followed by the "create" and/or
38
+ # "unregister" keywords. The "unregister" keyword grants access to unregister
39
+ # (delete) MBeans. The "create" keyword grants access to create MBeans of a
40
+ # particular class or of any class matching a particular pattern. Access
41
+ # should only be granted to create MBeans of known and trusted classes.
42
+ #
43
+ # For example, the following entry would grant readwrite access
44
+ # to "controlRole", as well as access to create MBeans of the class
45
+ # javax.management.monitor.CounterMonitor and to unregister any MBean:
46
+ # controlRole readwrite \
47
+ # create javax.management.monitor.CounterMonitorMBean \
48
+ # unregister
49
+ # or equivalently:
50
+ # controlRole readwrite unregister create javax.management.monitor.CounterMBean
51
+ #
52
+ # The following entry would grant readwrite access as well as access to create
53
+ # MBeans of any class in the packages javax.management.monitor and
54
+ # javax.management.timer:
55
+ # controlRole readwrite \
56
+ # create javax.management.monitor.*,javax.management.timer.* \
57
+ # unregister
58
+ #
59
+ # The \ character is defined in the Properties file syntax to allow continuation
60
+ # lines as shown here. A * in a class pattern matches a sequence of characters
61
+ # other than dot (.), so javax.management.monitor.* matches
62
+ # javax.management.monitor.CounterMonitor but not
63
+ # javax.management.monitor.foo.Bar.
64
+ #
65
+ # A given role should have at most one entry in this file. If a role
66
+ # has no entry, it has no access.
67
+ # If multiple entries are found for the same role name, then the last
68
+ # access entry is used.
69
+ #
70
+ #
71
+ # Default access control entries:
72
+ # o The "monitorRole" role has readonly access.
73
+ # o The "controlRole" role has readwrite access and can create the standard
74
+ # Timer and Monitor MBeans defined by the JMX API.
75
+
76
+ monitorRole readonly
77
+ controlRole readwrite \
78
+ create javax.management.monitor.*,javax.management.timer.* \
79
+ unregister
platform/dbops/binaries/java/jre11/conf/management/jmxremote.password.template ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ----------------------------------------------------------------------
2
+ # Template for jmxremote.password
3
+ #
4
+ # o Copy this template to jmxremote.password
5
+ # o Set the user/password entries in jmxremote.password
6
+ # o Change the permission of jmxremote.password to be accessible
7
+ # only by the owner.
8
+ # o The jmxremote.passwords file will be re-written by the server
9
+ # to replace all plain text passwords with hashed passwords when
10
+ # the file is read by the server.
11
+ #
12
+
13
+ ##############################################################
14
+ # Password File for Remote JMX Monitoring
15
+ ##############################################################
16
+ #
17
+ # Password file for Remote JMX API access to monitoring. This
18
+ # file defines the different roles and their passwords. The access
19
+ # control file (jmxremote.access by default) defines the allowed
20
+ # access for each role. To be functional, a role must have an entry
21
+ # in both the password and the access files.
22
+ #
23
+ # Default location of this file is $JRE/conf/management/jmxremote.password
24
+ # You can specify an alternate location by specifying a property in
25
+ # the management config file $JRE/conf/management/management.properties
26
+ # or by specifying a system property (See that file for details).
27
+
28
+ ##############################################################
29
+ # File format of the jmxremote.password file
30
+ ##############################################################
31
+ #
32
+ # The file contains multiple lines where each line is blank,
33
+ # a comment (like this one), or a password entry.
34
+ #
35
+ # password entry follows the below syntax
36
+ # role_name W [clearPassword|hashedPassword]
37
+ #
38
+ # role_name is any string that does not itself contain spaces or tabs.
39
+ # W = spaces or tabs
40
+ #
41
+ # Passwords can be specified via clear text or via a hash. Clear text password
42
+ # is any string that does not contain spaces or tabs. Hashed passwords must
43
+ # follow the below format.
44
+ # hashedPassword = base64_encoded_64_byte_salt W base64_encoded_hash W hash_algorithm
45
+ # where,
46
+ # base64_encoded_64_byte_salt = 64 byte random salt
47
+ # base64_encoded_hash = Hash_algorithm(password + salt)
48
+ # W = spaces or tabs
49
+ # hash_algorithm = Algorithm string specified using the format below
50
+ # https://docs.oracle.com/javase/9/docs/specs/security/standard-names.html#messagedigest-algorithms
51
+ # This is an optional field. If not specified, SHA3-512 will be assumed.
52
+ #
53
+ # If passwords are in clear, they will be overwritten by their hash if all of
54
+ # the below criteria are met.
55
+ # * com.sun.management.jmxremote.password.toHashes property is set to true in
56
+ # management.properties file
57
+ # * the password file is writable
58
+ # * the system security policy allows writing into the password file, if a
59
+ # security manager is configured
60
+ #
61
+ # In order to change the password for a role, replace the hashed password entry
62
+ # with a new clear text password or a new hashed password. If the new password
63
+ # is in clear, it will be replaced with its hash when a new login attempt is made.
64
+ #
65
+ # A given role should have at most one entry in this file. If a role
66
+ # has no entry, it has no access.
67
+ # If multiple entries are found for the same role name, then the last one
68
+ # is used.
69
+ #
70
+ # A user generated hashed password file can also be used instead of clear-text
71
+ # password file. If generated by the user, hashed passwords must follow the
72
+ # format specified above.
73
+ #
74
+ # Caution: It is recommended not to edit the password file while the
75
+ # agent is running, as edits could be lost if a client connection triggers the
76
+ # hashing of the password file at the same time that the file is externally modified.
77
+ # The integrity of the file is guaranteed, but any external edits made to the
78
+ # file during the short period between the time that the agent reads the file
79
+ # and the time that it writes it back might get lost
80
+
81
+ ##############################################################
82
+ # File permissions of the jmxremote.password file
83
+ ##############################################################
84
+ # This file must be made accessible by ONLY the owner,
85
+ # otherwise the program will exit with an error.
86
+ #
87
+ # In a typical installation, this file can be accessed by anybody on the
88
+ # local machine, and possibly by people on other machines.
89
+ # For security, you should either restrict the access to this file except for owner,
90
+ # or specify another, less accessible file in the management config file
91
+ # as described above.
92
+ #
93
+ # In order to prevent inadverent edits to the password file in the
94
+ # production environment, it is recommended to deploy a read-only
95
+ # hashed password file. The hashed entries for clear passwords can be generated
96
+ # in advance by running the JMX agent.
97
+ #
98
+
99
+ ##############################################################
100
+ # Sample of the jmxremote.password file
101
+ ##############################################################
102
+ # Following are two commented-out entries. The "monitorRole" role has
103
+ # password "QED". The "controlRole" role has password "R&D". This is an example
104
+ # of specifying passwords in the clear
105
+ #
106
+ # monitorRole QED
107
+ # controlRole R&D
108
+ #
109
+ # Once a login attempt is made, passwords will be hashed and the file will have
110
+ # below entries with clear passwords overwritten by their respective
111
+ # SHA3-512 hash
112
+ #
113
+ # monitorRole trilby APzBTt34rV2l+OMbuvbnOQ4si8UZmfRCVbIY1+fAofV5CkQzXS/FDMGteQQk/R3q1wtt104qImzJEA7gCwl6dw== 4EeTdSJ7X6Imu0Mb+dWqIns7a7QPIBoM3NB/XlpMQSPSicE7PnlALVWn2pBY3Q3pGDHyAb32Hd8GUToQbUhAjA== SHA3-512
114
+ # controlRole roHEJSbRqSSTII4Z4+NOCV2OJaZVQ/dw153Fy2u4ILDP9XiZ426GwzCzc3RtpoqNMwqYIcfdd74xWXSMrWtGaA== w9qDsekgKn0WOVJycDyU0kLBa081zbStcCjUAVEqlfon5Sgx7XHtaodbmzpLegA1jT7Ag36T0zHaEWRHJe2fdA== SHA3-512
115
+ #
platform/dbops/binaries/java/jre11/conf/management/management.properties ADDED
@@ -0,0 +1,302 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #####################################################################
2
+ # Default Configuration File for Java Platform Management
3
+ #####################################################################
4
+ #
5
+ # The Management Configuration file (in java.util.Properties format)
6
+ # will be read if one of the following system properties is set:
7
+ # -Dcom.sun.management.jmxremote.port=<port-number>
8
+ # or -Dcom.sun.management.config.file=<this-file>
9
+ #
10
+ # The default Management Configuration file is:
11
+ #
12
+ # $JRE/conf/management/management.properties
13
+ #
14
+ # Another location for the Management Configuration File can be specified
15
+ # by the following property on the Java command line:
16
+ #
17
+ # -Dcom.sun.management.config.file=<this-file>
18
+ #
19
+ # If -Dcom.sun.management.config.file=<this-file> is set, the port
20
+ # number for the management agent can be specified in the config file
21
+ # using the following lines:
22
+ #
23
+ # ################ Management Agent Port #########################
24
+ #
25
+ # For setting the JMX RMI agent port use the following line
26
+ # com.sun.management.jmxremote.port=<port-number>
27
+ #
28
+
29
+ #####################################################################
30
+ # Optional Instrumentation
31
+ #####################################################################
32
+ #
33
+ # By default only the basic instrumentation with low overhead is on.
34
+ # The following properties allow to selectively turn on optional
35
+ # instrumentation which are off by default and may have some
36
+ # additional overhead.
37
+ #
38
+ # com.sun.management.enableThreadContentionMonitoring
39
+ #
40
+ # This option enables thread contention monitoring if the
41
+ # Java virtual machine supports such instrumentation.
42
+ # Refer to the specification for the java.lang.management.ThreadMBean
43
+ # interface - see isThreadContentionMonitoringSupported() method.
44
+ #
45
+
46
+ # To enable thread contention monitoring, uncomment the following line
47
+ # com.sun.management.enableThreadContentionMonitoring
48
+
49
+ #####################################################################
50
+ # RMI Management Properties
51
+ #####################################################################
52
+ #
53
+ # If system property -Dcom.sun.management.jmxremote.port=<port-number>
54
+ # is set then
55
+ # - A MBean server is started
56
+ # - JRE Platform MBeans are registered in the MBean server
57
+ # - RMI connector is published in a private readonly registry at
58
+ # specified port using a well known name, "jmxrmi"
59
+ # - the following properties are read for JMX remote management.
60
+ #
61
+ # The configuration can be specified only at startup time.
62
+ # Later changes to above system property (e.g. via setProperty method),
63
+ # this config file, the password file, or the access file have no effect to the
64
+ # running MBean server, the connector, or the registry.
65
+ #
66
+
67
+ #
68
+ # ########## RMI connector settings for local management ##########
69
+ #
70
+ # com.sun.management.jmxremote.local.only=true|false
71
+ # Default for this property is true. (Case for true/false ignored)
72
+ # If this property is specified as true then the local JMX RMI connector
73
+ # server will only accept connection requests from clients running on
74
+ # the host where the out-of-the-box JMX management agent is running.
75
+ # In order to ensure backwards compatibility this property could be
76
+ # set to false. However, deploying the local management agent in this
77
+ # way is discouraged because the local JMX RMI connector server will
78
+ # accept connection requests from any client either local or remote.
79
+ # For remote management the remote JMX RMI connector server should
80
+ # be used instead with authentication and SSL/TLS encryption enabled.
81
+ #
82
+
83
+ # For allowing the local management agent accept local
84
+ # and remote connection requests use the following line
85
+ # com.sun.management.jmxremote.local.only=false
86
+
87
+ #
88
+ # ###################### RMI SSL #############################
89
+ #
90
+ # com.sun.management.jmxremote.ssl=true|false
91
+ # Default for this property is true. (Case for true/false ignored)
92
+ # If this property is specified as false then SSL is not used.
93
+ #
94
+
95
+ # For RMI monitoring without SSL use the following line
96
+ # com.sun.management.jmxremote.ssl=false
97
+
98
+ # com.sun.management.jmxremote.ssl.config.file=filepath
99
+ # Specifies the location of the SSL configuration file. A properties
100
+ # file can be used to supply the keystore and truststore location and
101
+ # password settings thus avoiding to pass them as cleartext in the
102
+ # command-line.
103
+ #
104
+ # The current implementation of the out-of-the-box management agent will
105
+ # look up and use the properties specified below to configure the SSL
106
+ # keystore and truststore, if present:
107
+ # javax.net.ssl.keyStore=<keystore-location>
108
+ # javax.net.ssl.keyStorePassword=<keystore-password>
109
+ # javax.net.ssl.trustStore=<truststore-location>
110
+ # javax.net.ssl.trustStorePassword=<truststore-password>
111
+ # Any other properties in the file will be ignored. This will allow us
112
+ # to extend the property set in the future if required by the default
113
+ # SSL implementation.
114
+ #
115
+ # If the property "com.sun.management.jmxremote.ssl" is set to false,
116
+ # then this property is ignored.
117
+ #
118
+
119
+ # For supplying the keystore settings in a file use the following line
120
+ # com.sun.management.jmxremote.ssl.config.file=filepath
121
+
122
+ # com.sun.management.jmxremote.ssl.enabled.cipher.suites=<cipher-suites>
123
+ # The value of this property is a string that is a comma-separated list
124
+ # of SSL/TLS cipher suites to enable. This property can be specified in
125
+ # conjunction with the previous property "com.sun.management.jmxremote.ssl"
126
+ # in order to control which particular SSL/TLS cipher suites are enabled
127
+ # for use by accepted connections. If this property is not specified then
128
+ # the SSL/TLS RMI Server Socket Factory uses the SSL/TLS cipher suites that
129
+ # are enabled by default.
130
+ #
131
+
132
+ # com.sun.management.jmxremote.ssl.enabled.protocols=<protocol-versions>
133
+ # The value of this property is a string that is a comma-separated list
134
+ # of SSL/TLS protocol versions to enable. This property can be specified in
135
+ # conjunction with the previous property "com.sun.management.jmxremote.ssl"
136
+ # in order to control which particular SSL/TLS protocol versions are
137
+ # enabled for use by accepted connections. If this property is not
138
+ # specified then the SSL/TLS RMI Server Socket Factory uses the SSL/TLS
139
+ # protocol versions that are enabled by default.
140
+ #
141
+
142
+ # com.sun.management.jmxremote.ssl.need.client.auth=true|false
143
+ # Default for this property is false. (Case for true/false ignored)
144
+ # If this property is specified as true in conjunction with the previous
145
+ # property "com.sun.management.jmxremote.ssl" then the SSL/TLS RMI Server
146
+ # Socket Factory will require client authentication.
147
+ #
148
+
149
+ # For RMI monitoring with SSL client authentication use the following line
150
+ # com.sun.management.jmxremote.ssl.need.client.auth=true
151
+
152
+ # com.sun.management.jmxremote.registry.ssl=true|false
153
+ # Default for this property is false. (Case for true/false ignored)
154
+ # If this property is specified as true then the RMI registry used
155
+ # to bind the RMIServer remote object is protected with SSL/TLS
156
+ # RMI Socket Factories that can be configured with the properties:
157
+ # com.sun.management.jmxremote.ssl.config.file
158
+ # com.sun.management.jmxremote.ssl.enabled.cipher.suites
159
+ # com.sun.management.jmxremote.ssl.enabled.protocols
160
+ # com.sun.management.jmxremote.ssl.need.client.auth
161
+ # If the two properties below are true at the same time, i.e.
162
+ # com.sun.management.jmxremote.ssl=true
163
+ # com.sun.management.jmxremote.registry.ssl=true
164
+ # then the RMIServer remote object and the RMI registry are
165
+ # both exported with the same SSL/TLS RMI Socket Factories.
166
+ #
167
+
168
+ # For using an SSL/TLS protected RMI registry use the following line
169
+ # com.sun.management.jmxremote.registry.ssl=true
170
+
171
+ #
172
+ # ################ RMI User authentication ################
173
+ #
174
+ # com.sun.management.jmxremote.authenticate=true|false
175
+ # Default for this property is true. (Case for true/false ignored)
176
+ # If this property is specified as false then no authentication is
177
+ # performed and all users are allowed all access.
178
+ #
179
+
180
+ # For RMI monitoring without any checking use the following line
181
+ # com.sun.management.jmxremote.authenticate=false
182
+
183
+ #
184
+ # ################ RMI Login configuration ###################
185
+ #
186
+ # com.sun.management.jmxremote.login.config=<config-name>
187
+ # Specifies the name of a JAAS login configuration entry to use when
188
+ # authenticating users of RMI monitoring.
189
+ #
190
+ # Setting this property is optional - the default login configuration
191
+ # specifies a file-based authentication that uses the password file.
192
+ #
193
+ # When using this property to override the default login configuration
194
+ # then the named configuration entry must be in a file that gets loaded
195
+ # by JAAS. In addition, the login module(s) specified in the configuration
196
+ # should use the name and/or password callbacks to acquire the user's
197
+ # credentials. See the NameCallback and PasswordCallback classes in the
198
+ # javax.security.auth.callback package for more details.
199
+ #
200
+ # If the property "com.sun.management.jmxremote.authenticate" is set to
201
+ # false, then this property and the password & access files are ignored.
202
+ #
203
+
204
+ # For a non-default login configuration use the following line
205
+ # com.sun.management.jmxremote.login.config=<config-name>
206
+
207
+ #
208
+ # ################ RMI Password file location ##################
209
+ #
210
+ # com.sun.management.jmxremote.password.file=filepath
211
+ # Specifies location for password file
212
+ # This is optional - default location is
213
+ # $JRE/conf/management/jmxremote.password
214
+ #
215
+ # If the property "com.sun.management.jmxremote.authenticate" is set to
216
+ # false, then this property and the password & access files are ignored.
217
+ # Otherwise the password file must exist and be in the valid format.
218
+ # If the password file is empty or non-existent then no access is allowed.
219
+ #
220
+
221
+ # For a non-default password file location use the following line
222
+ # com.sun.management.jmxremote.password.file=filepath
223
+
224
+ #
225
+ # ################# Hash passwords in password file ##############
226
+ # com.sun.management.jmxremote.password.toHashes = true|false
227
+ # Default for this property is true.
228
+ # Specifies if passwords in the password file should be hashed or not.
229
+ # If this property is true, and if the password file is writable, and if the
230
+ # system security policy allows writing into the password file,
231
+ # all the clear passwords in the password file will be replaced by
232
+ # their SHA3-512 hash when the file is read by the server
233
+ #
234
+
235
+ #
236
+ # ################ RMI Access file location #####################
237
+ #
238
+ # com.sun.management.jmxremote.access.file=filepath
239
+ # Specifies location for access file
240
+ # This is optional - default location is
241
+ # $JRE/conf/management/jmxremote.access
242
+ #
243
+ # If the property "com.sun.management.jmxremote.authenticate" is set to
244
+ # false, then this property and the password & access files are ignored.
245
+ # Otherwise, the access file must exist and be in the valid format.
246
+ # If the access file is empty or non-existent then no access is allowed.
247
+ #
248
+
249
+ # For a non-default password file location use the following line
250
+ # com.sun.management.jmxremote.access.file=filepath
251
+ #
252
+
253
+ # ################ Management agent listen interface #########################
254
+ #
255
+ # com.sun.management.jmxremote.host=<host-or-interface-name>
256
+ # Specifies the local interface on which the JMX RMI agent will bind.
257
+ # This is useful when running on machines which have several
258
+ # interfaces defined. It makes it possible to listen to a specific
259
+ # subnet accessible through that interface.
260
+ #
261
+ # The format of the value for that property is any string accepted
262
+ # by java.net.InetAddress.getByName(String).
263
+ #
264
+
265
+ # ################ Filter for ObjectInputStream #############################
266
+ # com.sun.management.jmxremote.serial.filter.pattern=<filter-string>
267
+ # A filter, if configured, is used by java.io.ObjectInputStream during
268
+ # deserialization of parameters sent to the JMX default agent to validate the
269
+ # contents of the stream.
270
+ # A filter is configured as a sequence of patterns, each pattern is either
271
+ # matched against the name of a class in the stream or defines a limit.
272
+ # Patterns are separated by ";" (semicolon).
273
+ # Whitespace is significant and is considered part of the pattern.
274
+ #
275
+ # If a pattern includes a "=", it sets a limit.
276
+ # If a limit appears more than once the last value is used.
277
+ # Limits are checked before classes regardless of the order in the sequence of patterns.
278
+ # If any of the limits are exceeded, the filter status is REJECTED.
279
+ #
280
+ # maxdepth=value - the maximum depth of a graph
281
+ # maxrefs=value - the maximum number of internal references
282
+ # maxbytes=value - the maximum number of bytes in the input stream
283
+ # maxarray=value - the maximum array length allowed
284
+ #
285
+ # Other patterns, from left to right, match the class or package name as
286
+ # returned from Class.getName.
287
+ # If the class is an array type, the class or package to be matched is the element type.
288
+ # Arrays of any number of dimensions are treated the same as the element type.
289
+ # For example, a pattern of "!example.Foo", rejects creation of any instance or
290
+ # array of example.Foo.
291
+ #
292
+ # If the pattern starts with "!", the status is REJECTED if the remaining pattern
293
+ # is matched; otherwise the status is ALLOWED if the pattern matches.
294
+ # If the pattern contains "/", the non-empty prefix up to the "/" is the module name;
295
+ # if the module name matches the module name of the class then
296
+ # the remaining pattern is matched with the class name.
297
+ # If there is no "/", the module name is not compared.
298
+ # If the pattern ends with ".**" it matches any class in the package and all subpackages.
299
+ # If the pattern ends with ".*" it matches any class in the package.
300
+ # If the pattern ends with "*", it matches any class with the pattern as a prefix.
301
+ # If the pattern is equal to the class name, it matches.
302
+ # Otherwise, the status is UNDECIDED.
platform/dbops/binaries/java/jre11/conf/net.properties ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ############################################################
2
+ # Default Networking Configuration File
3
+ #
4
+ # This file may contain default values for the networking system properties.
5
+ # These values are only used when the system properties are not specified
6
+ # on the command line or set programmatically.
7
+ # For now, only the various proxy settings can be configured here.
8
+ ############################################################
9
+
10
+ # Whether or not the DefaultProxySelector will default to System Proxy
11
+ # settings when they do exist.
12
+ # Set it to 'true' to enable this feature and check for platform
13
+ # specific proxy settings
14
+ # Note that the system properties that do explicitly set proxies
15
+ # (like http.proxyHost) do take precedence over the system settings
16
+ # even if java.net.useSystemProxies is set to true.
17
+
18
+ java.net.useSystemProxies=false
19
+
20
+ #------------------------------------------------------------------------
21
+ # Proxy configuration for the various protocol handlers.
22
+ # DO NOT uncomment these lines if you have set java.net.useSystemProxies
23
+ # to true as the protocol specific properties will take precedence over
24
+ # system settings.
25
+ #------------------------------------------------------------------------
26
+
27
+ # HTTP Proxy settings. proxyHost is the name of the proxy server
28
+ # (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
29
+ # value is 80) and nonProxyHosts is a '|' separated list of hostnames which
30
+ # should be accessed directly, ignoring the proxy server (default value is
31
+ # localhost & 127.0.0.1).
32
+ #
33
+ # http.proxyHost=
34
+ # http.proxyPort=80
35
+ http.nonProxyHosts=localhost|127.*|[::1]
36
+ #
37
+ # HTTPS Proxy Settings. proxyHost is the name of the proxy server
38
+ # (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
39
+ # value is 443). The HTTPS protocol handlers uses the http nonProxyHosts list.
40
+ #
41
+ # https.proxyHost=
42
+ # https.proxyPort=443
43
+ #
44
+ # FTP Proxy settings. proxyHost is the name of the proxy server
45
+ # (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
46
+ # value is 80) and nonProxyHosts is a '|' separated list of hostnames which
47
+ # should be accessed directly, ignoring the proxy server (default value is
48
+ # localhost & 127.0.0.1).
49
+ #
50
+ # ftp.proxyHost=
51
+ # ftp.proxyPort=80
52
+ ftp.nonProxyHosts=localhost|127.*|[::1]
53
+ #
54
+ # Gopher Proxy settings. proxyHost is the name of the proxy server
55
+ # (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
56
+ # value is 80)
57
+ #
58
+ # gopher.proxyHost=
59
+ # gopher.proxyPort=80
60
+ #
61
+ # Socks proxy settings. socksProxyHost is the name of the proxy server
62
+ # (e.g. socks.domain.com), socksProxyPort is the port number to use
63
+ # (default value is 1080)
64
+ #
65
+ # socksProxyHost=
66
+ # socksProxyPort=1080
67
+ #
68
+ # HTTP Keep Alive settings. remainingData is the maximum amount of data
69
+ # in kilobytes that will be cleaned off the underlying socket so that it
70
+ # can be reused (default value is 512K), queuedConnections is the maximum
71
+ # number of Keep Alive connections to be on the queue for clean up (default
72
+ # value is 10).
73
+ # http.KeepAlive.remainingData=512
74
+ # http.KeepAlive.queuedConnections=10
75
+
76
+ # Authentication Scheme restrictions for HTTP and HTTPS.
77
+ #
78
+ # In some environments certain authentication schemes may be undesirable
79
+ # when proxying HTTP or HTTPS. For example, "Basic" results in effectively the
80
+ # cleartext transmission of the user's password over the physical network.
81
+ # This section describes the mechanism for disabling authentication schemes
82
+ # based on the scheme name. Disabled schemes will be treated as if they are not
83
+ # supported by the implementation.
84
+ #
85
+ # The 'jdk.http.auth.tunneling.disabledSchemes' property lists the authentication
86
+ # schemes that will be disabled when tunneling HTTPS over a proxy, HTTP CONNECT.
87
+ # The 'jdk.http.auth.proxying.disabledSchemes' property lists the authentication
88
+ # schemes that will be disabled when proxying HTTP.
89
+ #
90
+ # In both cases the property is a comma-separated list of, case-insensitive,
91
+ # authentication scheme names, as defined by their relevant RFCs. An
92
+ # implementation may, but is not required to, support common schemes whose names
93
+ # include: 'Basic', 'Digest', 'NTLM', 'Kerberos', 'Negotiate'. A scheme that
94
+ # is not known, or not supported, by the implementation is ignored.
95
+ #
96
+ # Note: This property is currently used by the JDK Reference implementation. It
97
+ # is not guaranteed to be examined and used by other implementations.
98
+ #
99
+ #jdk.http.auth.proxying.disabledSchemes=
100
+ jdk.http.auth.tunneling.disabledSchemes=Basic
101
+
102
+ #
103
+ # Allow restricted HTTP request headers
104
+ #
105
+ # By default, the following request headers are not allowed to be set by user code
106
+ # in HttpRequests: "connection", "content-length", "expect", "host" and "upgrade".
107
+ # The 'jdk.httpclient.allowRestrictedHeaders' property allows one or more of these
108
+ # headers to be specified as a comma separated list to override the default restriction.
109
+ # The names are case-insensitive and white-space is ignored (removed before processing
110
+ # the list). Note, this capability is mostly intended for testing and isn't expected
111
+ # to be used in real deployments. Protocol errors or other undefined behavior is likely
112
+ # to occur when using them. The property is not set by default.
113
+ # Note also, that there may be other headers that are restricted from being set
114
+ # depending on the context. This includes the "Authorization" header when the
115
+ # relevant HttpClient has an authenticator set. These restrictions cannot be
116
+ # overridden by this property.
117
+ #
118
+ # jdk.httpclient.allowRestrictedHeaders=host
119
+ #
120
+ #
121
+ # Transparent NTLM HTTP authentication mode on Windows. Transparent authentication
122
+ # can be used for the NTLM scheme, where the security credentials based on the
123
+ # currently logged in user's name and password can be obtained directly from the
124
+ # operating system, without prompting the user. This property has three possible
125
+ # values which regulate the behavior as shown below. Other unrecognized values
126
+ # are handled the same as 'disabled'. Note, that NTLM is not considered to be a
127
+ # strongly secure authentication scheme and care should be taken before enabling
128
+ # this mechanism.
129
+ #
130
+ # Transparent authentication never used.
131
+ #jdk.http.ntlm.transparentAuth=disabled
132
+ #
133
+ # Enabled for all hosts.
134
+ #jdk.http.ntlm.transparentAuth=allHosts
135
+ #
136
+ # Enabled for hosts that are trusted in Windows Internet settings
137
+ #jdk.http.ntlm.transparentAuth=trustedHosts
138
+ #
139
+ jdk.http.ntlm.transparentAuth=disabled
platform/dbops/binaries/java/jre11/conf/security/java.policy ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ //
2
+ // This system policy file grants a set of default permissions to all domains
3
+ // and can be configured to grant additional permissions to modules and other
4
+ // code sources. The code source URL scheme for modules linked into a
5
+ // run-time image is "jrt".
6
+ //
7
+ // For example, to grant permission to read the "foo" property to the module
8
+ // "com.greetings", the grant entry is:
9
+ //
10
+ // grant codeBase "jrt:/com.greetings" {
11
+ // permission java.util.PropertyPermission "foo", "read";
12
+ // };
13
+ //
14
+
15
+ // default permissions granted to all domains
16
+ grant {
17
+ // allows anyone to listen on dynamic ports
18
+ permission java.net.SocketPermission "localhost:0", "listen";
19
+
20
+ // "standard" properies that can be read by anyone
21
+ permission java.util.PropertyPermission "java.version", "read";
22
+ permission java.util.PropertyPermission "java.vendor", "read";
23
+ permission java.util.PropertyPermission "java.vendor.url", "read";
24
+ permission java.util.PropertyPermission "java.class.version", "read";
25
+ permission java.util.PropertyPermission "os.name", "read";
26
+ permission java.util.PropertyPermission "os.version", "read";
27
+ permission java.util.PropertyPermission "os.arch", "read";
28
+ permission java.util.PropertyPermission "file.separator", "read";
29
+ permission java.util.PropertyPermission "path.separator", "read";
30
+ permission java.util.PropertyPermission "line.separator", "read";
31
+ permission java.util.PropertyPermission
32
+ "java.specification.version", "read";
33
+ permission java.util.PropertyPermission
34
+ "java.specification.maintenance.version", "read";
35
+ permission java.util.PropertyPermission "java.specification.vendor", "read";
36
+ permission java.util.PropertyPermission "java.specification.name", "read";
37
+ permission java.util.PropertyPermission
38
+ "java.vm.specification.version", "read";
39
+ permission java.util.PropertyPermission
40
+ "java.vm.specification.vendor", "read";
41
+ permission java.util.PropertyPermission
42
+ "java.vm.specification.name", "read";
43
+ permission java.util.PropertyPermission "java.vm.version", "read";
44
+ permission java.util.PropertyPermission "java.vm.vendor", "read";
45
+ permission java.util.PropertyPermission "java.vm.name", "read";
46
+ };
platform/dbops/binaries/java/jre11/conf/security/java.security ADDED
@@ -0,0 +1,1387 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # This is the "master security properties file".
3
+ #
4
+ # An alternate java.security properties file may be specified
5
+ # from the command line via the system property
6
+ #
7
+ # -Djava.security.properties=<URL>
8
+ #
9
+ # This properties file appends to the master security properties file.
10
+ # If both properties files specify values for the same key, the value
11
+ # from the command-line properties file is selected, as it is the last
12
+ # one loaded.
13
+ #
14
+ # Also, if you specify
15
+ #
16
+ # -Djava.security.properties==<URL> (2 equals),
17
+ #
18
+ # then that properties file completely overrides the master security
19
+ # properties file.
20
+ #
21
+ # To disable the ability to specify an additional properties file from
22
+ # the command line, set the key security.overridePropertiesFile
23
+ # to false in the master security properties file. It is set to true
24
+ # by default.
25
+ #
26
+ # If this properties file fails to load, the JDK implementation will throw
27
+ # an unspecified error when initializing the java.security.Security class.
28
+
29
+ # In this file, various security properties are set for use by
30
+ # java.security classes. This is where users can statically register
31
+ # Cryptography Package Providers ("providers" for short). The term
32
+ # "provider" refers to a package or set of packages that supply a
33
+ # concrete implementation of a subset of the cryptography aspects of
34
+ # the Java Security API. A provider may, for example, implement one or
35
+ # more digital signature algorithms or message digest algorithms.
36
+ #
37
+ # Each provider must implement a subclass of the Provider class.
38
+ # To register a provider in this master security properties file,
39
+ # specify the provider and priority in the format
40
+ #
41
+ # security.provider.<n>=<provName | className>
42
+ #
43
+ # This declares a provider, and specifies its preference
44
+ # order n. The preference order is the order in which providers are
45
+ # searched for requested algorithms (when no specific provider is
46
+ # requested). The order is 1-based; 1 is the most preferred, followed
47
+ # by 2, and so on.
48
+ #
49
+ # <provName> must specify the name of the Provider as passed to its super
50
+ # class java.security.Provider constructor. This is for providers loaded
51
+ # through the ServiceLoader mechanism.
52
+ #
53
+ # <className> must specify the subclass of the Provider class whose
54
+ # constructor sets the values of various properties that are required
55
+ # for the Java Security API to look up the algorithms or other
56
+ # facilities implemented by the provider. This is for providers loaded
57
+ # through classpath.
58
+ #
59
+ # Note: Providers can be dynamically registered instead by calls to
60
+ # either the addProvider or insertProviderAt method in the Security
61
+ # class.
62
+
63
+ #
64
+ # List of providers and their preference orders (see above):
65
+ #
66
+ security.provider.1=SUN
67
+ security.provider.2=SunRsaSign
68
+ security.provider.3=SunEC
69
+ security.provider.4=SunJSSE
70
+ security.provider.5=SunJCE
71
+ security.provider.6=SunJGSS
72
+ security.provider.7=SunSASL
73
+ security.provider.8=XMLDSig
74
+ security.provider.9=SunPCSC
75
+ security.provider.10=JdkLDAP
76
+ security.provider.11=JdkSASL
77
+ security.provider.12=SunPKCS11
78
+
79
+ #
80
+ # A list of preferred providers for specific algorithms. These providers will
81
+ # be searched for matching algorithms before the list of registered providers.
82
+ # Entries containing errors (parsing, etc) will be ignored. Use the
83
+ # -Djava.security.debug=jca property to debug these errors.
84
+ #
85
+ # The property is a comma-separated list of serviceType.algorithm:provider
86
+ # entries. The serviceType (example: "MessageDigest") is optional, and if
87
+ # not specified, the algorithm applies to all service types that support it.
88
+ # The algorithm is the standard algorithm name or transformation.
89
+ # Transformations can be specified in their full standard name
90
+ # (ex: AES/CBC/PKCS5Padding), or as partial matches (ex: AES, AES/CBC).
91
+ # The provider is the name of the provider. Any provider that does not
92
+ # also appear in the registered list will be ignored.
93
+ #
94
+ # There is a special serviceType for this property only to group a set of
95
+ # algorithms together. The type is "Group" and is followed by an algorithm
96
+ # keyword. Groups are to simplify and lessen the entries on the property
97
+ # line. Current groups are:
98
+ # Group.SHA2 = SHA-224, SHA-256, SHA-384, SHA-512, SHA-512/224, SHA-512/256
99
+ # Group.HmacSHA2 = HmacSHA224, HmacSHA256, HmacSHA384, HmacSHA512
100
+ # Group.SHA2RSA = SHA224withRSA, SHA256withRSA, SHA384withRSA, SHA512withRSA
101
+ # Group.SHA2DSA = SHA224withDSA, SHA256withDSA, SHA384withDSA, SHA512withDSA
102
+ # Group.SHA2ECDSA = SHA224withECDSA, SHA256withECDSA, SHA384withECDSA, \
103
+ # SHA512withECDSA
104
+ # Group.SHA3 = SHA3-224, SHA3-256, SHA3-384, SHA3-512
105
+ # Group.HmacSHA3 = HmacSHA3-224, HmacSHA3-256, HmacSHA3-384, HmacSHA3-512
106
+ #
107
+ # Example:
108
+ # jdk.security.provider.preferred=AES/GCM/NoPadding:SunJCE, \
109
+ # MessageDigest.SHA-256:SUN, Group.HmacSHA2:SunJCE
110
+ #
111
+ #jdk.security.provider.preferred=
112
+
113
+
114
+ #
115
+ # Sun Provider SecureRandom seed source.
116
+ #
117
+ # Select the primary source of seed data for the "NativePRNG", "SHA1PRNG"
118
+ # and "DRBG" SecureRandom implementations in the "Sun" provider.
119
+ # (Other SecureRandom implementations might also use this property.)
120
+ #
121
+ # On Unix-like systems (for example, Solaris/Linux/MacOS), the
122
+ # "NativePRNG", "SHA1PRNG" and "DRBG" implementations obtains seed data from
123
+ # special device files such as file:/dev/random.
124
+ #
125
+ # On Windows systems, specifying the URLs "file:/dev/random" or
126
+ # "file:/dev/urandom" will enable the native Microsoft CryptoAPI seeding
127
+ # mechanism for SHA1PRNG and DRBG.
128
+ #
129
+ # By default, an attempt is made to use the entropy gathering device
130
+ # specified by the "securerandom.source" Security property. If an
131
+ # exception occurs while accessing the specified URL:
132
+ #
133
+ # NativePRNG:
134
+ # a default value of /dev/random will be used. If neither
135
+ # are available, the implementation will be disabled.
136
+ # "file" is the only currently supported protocol type.
137
+ #
138
+ # SHA1PRNG and DRBG:
139
+ # the traditional system/thread activity algorithm will be used.
140
+ #
141
+ # The entropy gathering device can also be specified with the System
142
+ # property "java.security.egd". For example:
143
+ #
144
+ # % java -Djava.security.egd=file:/dev/random MainClass
145
+ #
146
+ # Specifying this System property will override the
147
+ # "securerandom.source" Security property.
148
+ #
149
+ # In addition, if "file:/dev/random" or "file:/dev/urandom" is
150
+ # specified, the "NativePRNG" implementation will be more preferred than
151
+ # DRBG and SHA1PRNG in the Sun provider.
152
+ #
153
+ securerandom.source=file:/dev/random
154
+
155
+ #
156
+ # A list of known strong SecureRandom implementations.
157
+ #
158
+ # To help guide applications in selecting a suitable strong
159
+ # java.security.SecureRandom implementation, Java distributions should
160
+ # indicate a list of known strong implementations using the property.
161
+ #
162
+ # This is a comma-separated list of algorithm and/or algorithm:provider
163
+ # entries.
164
+ #
165
+ securerandom.strongAlgorithms=NativePRNGBlocking:SUN,DRBG:SUN
166
+
167
+ #
168
+ # Sun provider DRBG configuration and default instantiation request.
169
+ #
170
+ # NIST SP 800-90Ar1 lists several DRBG mechanisms. Each can be configured
171
+ # with a DRBG algorithm name, and can be instantiated with a security strength,
172
+ # prediction resistance support, etc. This property defines the configuration
173
+ # and the default instantiation request of "DRBG" SecureRandom implementations
174
+ # in the SUN provider. (Other DRBG implementations can also use this property.)
175
+ # Applications can request different instantiation parameters like security
176
+ # strength, capability, personalization string using one of the
177
+ # getInstance(...,SecureRandomParameters,...) methods with a
178
+ # DrbgParameters.Instantiation argument, but other settings such as the
179
+ # mechanism and DRBG algorithm names are not currently configurable by any API.
180
+ #
181
+ # Please note that the SUN implementation of DRBG always supports reseeding.
182
+ #
183
+ # The value of this property is a comma-separated list of all configurable
184
+ # aspects. The aspects can appear in any order but the same aspect can only
185
+ # appear at most once. Its BNF-style definition is:
186
+ #
187
+ # Value:
188
+ # aspect { "," aspect }
189
+ #
190
+ # aspect:
191
+ # mech_name | algorithm_name | strength | capability | df
192
+ #
193
+ # // The DRBG mechanism to use. Default "Hash_DRBG"
194
+ # mech_name:
195
+ # "Hash_DRBG" | "HMAC_DRBG" | "CTR_DRBG"
196
+ #
197
+ # // The DRBG algorithm name. The "SHA-***" names are for Hash_DRBG and
198
+ # // HMAC_DRBG, default "SHA-256". The "AES-***" names are for CTR_DRBG,
199
+ # // default "AES-128" when using the limited cryptographic or "AES-256"
200
+ # // when using the unlimited.
201
+ # algorithm_name:
202
+ # "SHA-224" | "SHA-512/224" | "SHA-256" |
203
+ # "SHA-512/256" | "SHA-384" | "SHA-512" |
204
+ # "AES-128" | "AES-192" | "AES-256"
205
+ #
206
+ # // Security strength requested. Default "128"
207
+ # strength:
208
+ # "112" | "128" | "192" | "256"
209
+ #
210
+ # // Prediction resistance and reseeding request. Default "none"
211
+ # // "pr_and_reseed" - Both prediction resistance and reseeding
212
+ # // support requested
213
+ # // "reseed_only" - Only reseeding support requested
214
+ # // "none" - Neither prediction resistance not reseeding
215
+ # // support requested
216
+ # pr:
217
+ # "pr_and_reseed" | "reseed_only" | "none"
218
+ #
219
+ # // Whether a derivation function should be used. only applicable
220
+ # // to CTR_DRBG. Default "use_df"
221
+ # df:
222
+ # "use_df" | "no_df"
223
+ #
224
+ # Examples,
225
+ # securerandom.drbg.config=Hash_DRBG,SHA-224,112,none
226
+ # securerandom.drbg.config=CTR_DRBG,AES-256,192,pr_and_reseed,use_df
227
+ #
228
+ # The default value is an empty string, which is equivalent to
229
+ # securerandom.drbg.config=Hash_DRBG,SHA-256,128,none
230
+ #
231
+ securerandom.drbg.config=
232
+
233
+ #
234
+ # Class to instantiate as the javax.security.auth.login.Configuration
235
+ # provider.
236
+ #
237
+ login.configuration.provider=sun.security.provider.ConfigFile
238
+
239
+ #
240
+ # Default login configuration file
241
+ #
242
+ #login.config.url.1=file:${user.home}/.java.login.config
243
+
244
+ #
245
+ # Class to instantiate as the system Policy. This is the name of the class
246
+ # that will be used as the Policy object. The system class loader is used to
247
+ # locate this class.
248
+ #
249
+ policy.provider=sun.security.provider.PolicyFile
250
+
251
+ # The default is to have a single system-wide policy file,
252
+ # and a policy file in the user's home directory.
253
+ #
254
+ policy.url.1=file:${java.home}/conf/security/java.policy
255
+ policy.url.2=file:${user.home}/.java.policy
256
+
257
+ # whether or not we expand properties in the policy file
258
+ # if this is set to false, properties (${...}) will not be expanded in policy
259
+ # files.
260
+ #
261
+ policy.expandProperties=true
262
+
263
+ # whether or not we allow an extra policy to be passed on the command line
264
+ # with -Djava.security.policy=somefile. Comment out this line to disable
265
+ # this feature.
266
+ #
267
+ policy.allowSystemProperty=true
268
+
269
+ # whether or not we look into the IdentityScope for trusted Identities
270
+ # when encountering a 1.1 signed JAR file. If the identity is found
271
+ # and is trusted, we grant it AllPermission. Note: the default policy
272
+ # provider (sun.security.provider.PolicyFile) does not support this property.
273
+ #
274
+ policy.ignoreIdentityScope=false
275
+
276
+ #
277
+ # Default keystore type.
278
+ #
279
+ keystore.type=pkcs12
280
+
281
+ #
282
+ # Controls compatibility mode for JKS and PKCS12 keystore types.
283
+ #
284
+ # When set to 'true', both JKS and PKCS12 keystore types support loading
285
+ # keystore files in either JKS or PKCS12 format. When set to 'false' the
286
+ # JKS keystore type supports loading only JKS keystore files and the PKCS12
287
+ # keystore type supports loading only PKCS12 keystore files.
288
+ #
289
+ keystore.type.compat=true
290
+
291
+ #
292
+ # List of comma-separated packages that start with or equal this string
293
+ # will cause a security exception to be thrown when passed to the
294
+ # SecurityManager::checkPackageAccess method unless the corresponding
295
+ # RuntimePermission("accessClassInPackage."+package) has been granted.
296
+ #
297
+ package.access=sun.misc.,\
298
+ sun.reflect.
299
+
300
+ #
301
+ # List of comma-separated packages that start with or equal this string
302
+ # will cause a security exception to be thrown when passed to the
303
+ # SecurityManager::checkPackageDefinition method unless the corresponding
304
+ # RuntimePermission("defineClassInPackage."+package) has been granted.
305
+ #
306
+ # By default, none of the class loaders supplied with the JDK call
307
+ # checkPackageDefinition.
308
+ #
309
+ package.definition=sun.misc.,\
310
+ sun.reflect.
311
+
312
+ #
313
+ # Determines whether this properties file can be appended to
314
+ # or overridden on the command line via -Djava.security.properties
315
+ #
316
+ security.overridePropertiesFile=true
317
+
318
+ #
319
+ # Determines the default key and trust manager factory algorithms for
320
+ # the javax.net.ssl package.
321
+ #
322
+ ssl.KeyManagerFactory.algorithm=SunX509
323
+ ssl.TrustManagerFactory.algorithm=PKIX
324
+
325
+ #
326
+ # The Java-level namelookup cache policy for successful lookups:
327
+ #
328
+ # any negative value: caching forever
329
+ # any positive value: the number of seconds to cache an address for
330
+ # zero: do not cache
331
+ #
332
+ # default value is forever (FOREVER). For security reasons, this
333
+ # caching is made forever when a security manager is set. When a security
334
+ # manager is not set, the default behavior in this implementation
335
+ # is to cache for 30 seconds.
336
+ #
337
+ # NOTE: setting this to anything other than the default value can have
338
+ # serious security implications. Do not set it unless
339
+ # you are sure you are not exposed to DNS spoofing attack.
340
+ #
341
+ #networkaddress.cache.ttl=-1
342
+
343
+ # The Java-level namelookup cache policy for failed lookups:
344
+ #
345
+ # any negative value: cache forever
346
+ # any positive value: the number of seconds to cache negative lookup results
347
+ # zero: do not cache
348
+ #
349
+ # In some Microsoft Windows networking environments that employ
350
+ # the WINS name service in addition to DNS, name service lookups
351
+ # that fail may take a noticeably long time to return (approx. 5 seconds).
352
+ # For this reason the default caching policy is to maintain these
353
+ # results for 10 seconds.
354
+ #
355
+ networkaddress.cache.negative.ttl=10
356
+
357
+ #
358
+ # Properties to configure OCSP for certificate revocation checking
359
+ #
360
+
361
+ # Enable OCSP
362
+ #
363
+ # By default, OCSP is not used for certificate revocation checking.
364
+ # This property enables the use of OCSP when set to the value "true".
365
+ #
366
+ # NOTE: SocketPermission is required to connect to an OCSP responder.
367
+ #
368
+ # Example,
369
+ # ocsp.enable=true
370
+
371
+ #
372
+ # Location of the OCSP responder
373
+ #
374
+ # By default, the location of the OCSP responder is determined implicitly
375
+ # from the certificate being validated. This property explicitly specifies
376
+ # the location of the OCSP responder. The property is used when the
377
+ # Authority Information Access extension (defined in RFC 5280) is absent
378
+ # from the certificate or when it requires overriding.
379
+ #
380
+ # Example,
381
+ # ocsp.responderURL=http://ocsp.example.net:80
382
+
383
+ #
384
+ # Subject name of the OCSP responder's certificate
385
+ #
386
+ # By default, the certificate of the OCSP responder is that of the issuer
387
+ # of the certificate being validated. This property identifies the certificate
388
+ # of the OCSP responder when the default does not apply. Its value is a string
389
+ # distinguished name (defined in RFC 2253) which identifies a certificate in
390
+ # the set of certificates supplied during cert path validation. In cases where
391
+ # the subject name alone is not sufficient to uniquely identify the certificate
392
+ # then both the "ocsp.responderCertIssuerName" and
393
+ # "ocsp.responderCertSerialNumber" properties must be used instead. When this
394
+ # property is set then those two properties are ignored.
395
+ #
396
+ # Example,
397
+ # ocsp.responderCertSubjectName=CN=OCSP Responder, O=XYZ Corp
398
+
399
+ #
400
+ # Issuer name of the OCSP responder's certificate
401
+ #
402
+ # By default, the certificate of the OCSP responder is that of the issuer
403
+ # of the certificate being validated. This property identifies the certificate
404
+ # of the OCSP responder when the default does not apply. Its value is a string
405
+ # distinguished name (defined in RFC 2253) which identifies a certificate in
406
+ # the set of certificates supplied during cert path validation. When this
407
+ # property is set then the "ocsp.responderCertSerialNumber" property must also
408
+ # be set. When the "ocsp.responderCertSubjectName" property is set then this
409
+ # property is ignored.
410
+ #
411
+ # Example,
412
+ # ocsp.responderCertIssuerName=CN=Enterprise CA, O=XYZ Corp
413
+
414
+ #
415
+ # Serial number of the OCSP responder's certificate
416
+ #
417
+ # By default, the certificate of the OCSP responder is that of the issuer
418
+ # of the certificate being validated. This property identifies the certificate
419
+ # of the OCSP responder when the default does not apply. Its value is a string
420
+ # of hexadecimal digits (colon or space separators may be present) which
421
+ # identifies a certificate in the set of certificates supplied during cert path
422
+ # validation. When this property is set then the "ocsp.responderCertIssuerName"
423
+ # property must also be set. When the "ocsp.responderCertSubjectName" property
424
+ # is set then this property is ignored.
425
+ #
426
+ # Example,
427
+ # ocsp.responderCertSerialNumber=2A:FF:00
428
+
429
+ #
430
+ # Policy for failed Kerberos KDC lookups:
431
+ #
432
+ # When a KDC is unavailable (network error, service failure, etc), it is
433
+ # put inside a secondary list and accessed less often for future requests. The
434
+ # value (case-insensitive) for this policy can be:
435
+ #
436
+ # tryLast
437
+ # KDCs in the secondary list are always tried after those not on the list.
438
+ #
439
+ # tryLess[:max_retries,timeout]
440
+ # KDCs in the secondary list are still tried by their order in the
441
+ # configuration, but with smaller max_retries and timeout values.
442
+ # max_retries and timeout are optional numerical parameters (default 1 and
443
+ # 5000, which means once and 5 seconds). Please note that if any of the
444
+ # values defined here are more than what is defined in krb5.conf, it will be
445
+ # ignored.
446
+ #
447
+ # Whenever a KDC is detected as available, it is removed from the secondary
448
+ # list. The secondary list is reset when krb5.conf is reloaded. You can add
449
+ # refreshKrb5Config=true to a JAAS configuration file so that krb5.conf is
450
+ # reloaded whenever a JAAS authentication is attempted.
451
+ #
452
+ # Example,
453
+ # krb5.kdc.bad.policy = tryLast
454
+ # krb5.kdc.bad.policy = tryLess:2,2000
455
+ #
456
+ krb5.kdc.bad.policy = tryLast
457
+
458
+ #
459
+ # Kerberos cross-realm referrals (RFC 6806)
460
+ #
461
+ # OpenJDK's Kerberos client supports cross-realm referrals as defined in
462
+ # RFC 6806. This allows to setup more dynamic environments in which clients
463
+ # do not need to know in advance how to reach the realm of a target principal
464
+ # (either a user or service).
465
+ #
466
+ # When a client issues an AS or a TGS request, the "canonicalize" option
467
+ # is set to announce support of this feature. A KDC server may fulfill the
468
+ # request or reply referring the client to a different one. If referred,
469
+ # the client will issue a new request and the cycle repeats.
470
+ #
471
+ # In addition to referrals, the "canonicalize" option allows the KDC server
472
+ # to change the client name in response to an AS request. For security reasons,
473
+ # RFC 6806 (section 11) FAST scheme is enforced.
474
+ #
475
+ # Disable Kerberos cross-realm referrals. Value may be overwritten with a
476
+ # System property (-Dsun.security.krb5.disableReferrals).
477
+ sun.security.krb5.disableReferrals=false
478
+
479
+ # Maximum number of AS or TGS referrals to avoid infinite loops. Value may
480
+ # be overwritten with a System property (-Dsun.security.krb5.maxReferrals).
481
+ sun.security.krb5.maxReferrals=5
482
+
483
+ #
484
+ # This property contains a list of disabled EC Named Curves that can be included
485
+ # in the jdk.[tls|certpath|jar].disabledAlgorithms properties. To include this
486
+ # list in any of the disabledAlgorithms properties, add the property name as
487
+ # an entry.
488
+ jdk.disabled.namedCurves = secp112r1, secp112r2, secp128r1, secp128r2, \
489
+ secp160k1, secp160r1, secp160r2, secp192k1, secp192r1, secp224k1, \
490
+ secp224r1, secp256k1, sect113r1, sect113r2, sect131r1, sect131r2, \
491
+ sect163k1, sect163r1, sect163r2, sect193r1, sect193r2, sect233k1, \
492
+ sect233r1, sect239k1, sect283k1, sect283r1, sect409k1, sect409r1, \
493
+ sect571k1, sect571r1, X9.62 c2tnb191v1, X9.62 c2tnb191v2, \
494
+ X9.62 c2tnb191v3, X9.62 c2tnb239v1, X9.62 c2tnb239v2, X9.62 c2tnb239v3, \
495
+ X9.62 c2tnb359v1, X9.62 c2tnb431r1, X9.62 prime192v2, X9.62 prime192v3, \
496
+ X9.62 prime239v1, X9.62 prime239v2, X9.62 prime239v3, brainpoolP256r1, \
497
+ brainpoolP320r1, brainpoolP384r1, brainpoolP512r1
498
+
499
+ #
500
+ # Algorithm restrictions for certification path (CertPath) processing
501
+ #
502
+ # In some environments, certain algorithms or key lengths may be undesirable
503
+ # for certification path building and validation. For example, "MD2" is
504
+ # generally no longer considered to be a secure hash algorithm. This section
505
+ # describes the mechanism for disabling algorithms based on algorithm name
506
+ # and/or key length. This includes algorithms used in certificates, as well
507
+ # as revocation information such as CRLs and signed OCSP Responses.
508
+ # The syntax of the disabled algorithm string is described as follows:
509
+ # DisabledAlgorithms:
510
+ # " DisabledAlgorithm { , DisabledAlgorithm } "
511
+ #
512
+ # DisabledAlgorithm:
513
+ # AlgorithmName [Constraint] { '&' Constraint } | IncludeProperty
514
+ #
515
+ # AlgorithmName:
516
+ # (see below)
517
+ #
518
+ # Constraint:
519
+ # KeySizeConstraint | CAConstraint | DenyAfterConstraint |
520
+ # UsageConstraint
521
+ #
522
+ # KeySizeConstraint:
523
+ # keySize Operator KeyLength
524
+ #
525
+ # Operator:
526
+ # <= | < | == | != | >= | >
527
+ #
528
+ # KeyLength:
529
+ # Integer value of the algorithm's key length in bits
530
+ #
531
+ # CAConstraint:
532
+ # jdkCA
533
+ #
534
+ # DenyAfterConstraint:
535
+ # denyAfter YYYY-MM-DD
536
+ #
537
+ # UsageConstraint:
538
+ # usage [TLSServer] [TLSClient] [SignedJAR]
539
+ #
540
+ # IncludeProperty:
541
+ # include <security property>
542
+ #
543
+ # The "AlgorithmName" is the standard algorithm name of the disabled
544
+ # algorithm. See the Java Security Standard Algorithm Names Specification
545
+ # for information about Standard Algorithm Names. Matching is
546
+ # performed using a case-insensitive sub-element matching rule. (For
547
+ # example, in "SHA1withECDSA" the sub-elements are "SHA1" for hashing and
548
+ # "ECDSA" for signatures.) If the assertion "AlgorithmName" is a
549
+ # sub-element of the certificate algorithm name, the algorithm will be
550
+ # rejected during certification path building and validation. For example,
551
+ # the assertion algorithm name "DSA" will disable all certificate algorithms
552
+ # that rely on DSA, such as NONEwithDSA, SHA1withDSA. However, the assertion
553
+ # will not disable algorithms related to "ECDSA".
554
+ #
555
+ # The "IncludeProperty" allows a implementation-defined security property that
556
+ # can be included in the disabledAlgorithms properties. These properties are
557
+ # to help manage common actions easier across multiple disabledAlgorithm
558
+ # properties.
559
+ # There is one defined security property: jdk.disabled.namedCurves
560
+ # See the property for more specific details.
561
+ #
562
+ #
563
+ # A "Constraint" defines restrictions on the keys and/or certificates for
564
+ # a specified AlgorithmName:
565
+ #
566
+ # KeySizeConstraint:
567
+ # keySize Operator KeyLength
568
+ # The constraint requires a key of a valid size range if the
569
+ # "AlgorithmName" is of a key algorithm. The "KeyLength" indicates
570
+ # the key size specified in number of bits. For example,
571
+ # "RSA keySize <= 1024" indicates that any RSA key with key size less
572
+ # than or equal to 1024 bits should be disabled, and
573
+ # "RSA keySize < 1024, RSA keySize > 2048" indicates that any RSA key
574
+ # with key size less than 1024 or greater than 2048 should be disabled.
575
+ # This constraint is only used on algorithms that have a key size.
576
+ #
577
+ # CAConstraint:
578
+ # jdkCA
579
+ # This constraint prohibits the specified algorithm only if the
580
+ # algorithm is used in a certificate chain that terminates at a marked
581
+ # trust anchor in the lib/security/cacerts keystore. If the jdkCA
582
+ # constraint is not set, then all chains using the specified algorithm
583
+ # are restricted. jdkCA may only be used once in a DisabledAlgorithm
584
+ # expression.
585
+ # Example: To apply this constraint to SHA-1 certificates, include
586
+ # the following: "SHA1 jdkCA"
587
+ #
588
+ # DenyAfterConstraint:
589
+ # denyAfter YYYY-MM-DD
590
+ # This constraint prohibits a certificate with the specified algorithm
591
+ # from being used after the date regardless of the certificate's
592
+ # validity. JAR files that are signed and timestamped before the
593
+ # constraint date with certificates containing the disabled algorithm
594
+ # will not be restricted. The date is processed in the UTC timezone.
595
+ # This constraint can only be used once in a DisabledAlgorithm
596
+ # expression.
597
+ # Example: To deny usage of RSA 2048 bit certificates after Feb 3 2020,
598
+ # use the following: "RSA keySize == 2048 & denyAfter 2020-02-03"
599
+ #
600
+ # UsageConstraint:
601
+ # usage [TLSServer] [TLSClient] [SignedJAR]
602
+ # This constraint prohibits the specified algorithm for
603
+ # a specified usage. This should be used when disabling an algorithm
604
+ # for all usages is not practical. 'TLSServer' restricts the algorithm
605
+ # in TLS server certificate chains when server authentication is
606
+ # performed. 'TLSClient' restricts the algorithm in TLS client
607
+ # certificate chains when client authentication is performed.
608
+ # 'SignedJAR' constrains use of certificates in signed jar files.
609
+ # The usage type follows the keyword and more than one usage type can
610
+ # be specified with a whitespace delimiter.
611
+ # Example: "SHA1 usage TLSServer TLSClient"
612
+ #
613
+ # When an algorithm must satisfy more than one constraint, it must be
614
+ # delimited by an ampersand '&'. For example, to restrict certificates in a
615
+ # chain that terminate at a distribution provided trust anchor and contain
616
+ # RSA keys that are less than or equal to 1024 bits, add the following
617
+ # constraint: "RSA keySize <= 1024 & jdkCA".
618
+ #
619
+ # All DisabledAlgorithms expressions are processed in the order defined in the
620
+ # property. This requires lower keysize constraints to be specified
621
+ # before larger keysize constraints of the same algorithm. For example:
622
+ # "RSA keySize < 1024 & jdkCA, RSA keySize < 2048".
623
+ #
624
+ # Note: The algorithm restrictions do not apply to trust anchors or
625
+ # self-signed certificates.
626
+ #
627
+ # Note: This property is currently used by Oracle's PKIX implementation. It
628
+ # is not guaranteed to be examined and used by other implementations.
629
+ #
630
+ # Example:
631
+ # jdk.certpath.disabledAlgorithms=MD2, DSA, RSA keySize < 2048
632
+ #
633
+ #
634
+ jdk.certpath.disabledAlgorithms=MD2, MD5, SHA1 jdkCA & usage TLSServer, \
635
+ RSA keySize < 1024, DSA keySize < 1024, EC keySize < 224, \
636
+ SHA1 usage SignedJAR & denyAfter 2019-01-01, \
637
+ include jdk.disabled.namedCurves
638
+
639
+ #
640
+ # Legacy algorithms for certification path (CertPath) processing and
641
+ # signed JAR files.
642
+ #
643
+ # In some environments, a certain algorithm or key length may be undesirable
644
+ # but is not yet disabled.
645
+ #
646
+ # Tools such as keytool and jarsigner may emit warnings when these legacy
647
+ # algorithms are used. See the man pages for those tools for more information.
648
+ #
649
+ # The syntax is the same as the "jdk.certpath.disabledAlgorithms" and
650
+ # "jdk.jar.disabledAlgorithms" security properties.
651
+ #
652
+ # Note: This property is currently used by the JDK Reference
653
+ # implementation. It is not guaranteed to be examined and used by other
654
+ # implementations.
655
+
656
+ jdk.security.legacyAlgorithms=SHA1, \
657
+ RSA keySize < 2048, DSA keySize < 2048
658
+
659
+ #
660
+ # Algorithm restrictions for signed JAR files
661
+ #
662
+ # In some environments, certain algorithms or key lengths may be undesirable
663
+ # for signed JAR validation. For example, "MD2" is generally no longer
664
+ # considered to be a secure hash algorithm. This section describes the
665
+ # mechanism for disabling algorithms based on algorithm name and/or key length.
666
+ # JARs signed with any of the disabled algorithms or key sizes will be treated
667
+ # as unsigned.
668
+ #
669
+ # The syntax of the disabled algorithm string is described as follows:
670
+ # DisabledAlgorithms:
671
+ # " DisabledAlgorithm { , DisabledAlgorithm } "
672
+ #
673
+ # DisabledAlgorithm:
674
+ # AlgorithmName [Constraint] { '&' Constraint }
675
+ #
676
+ # AlgorithmName:
677
+ # (see below)
678
+ #
679
+ # Constraint:
680
+ # KeySizeConstraint | DenyAfterConstraint
681
+ #
682
+ # KeySizeConstraint:
683
+ # keySize Operator KeyLength
684
+ #
685
+ # DenyAfterConstraint:
686
+ # denyAfter YYYY-MM-DD
687
+ #
688
+ # Operator:
689
+ # <= | < | == | != | >= | >
690
+ #
691
+ # KeyLength:
692
+ # Integer value of the algorithm's key length in bits
693
+ #
694
+ # Note: This property is currently used by the JDK Reference
695
+ # implementation. It is not guaranteed to be examined and used by other
696
+ # implementations.
697
+ #
698
+ # See "jdk.certpath.disabledAlgorithms" for syntax descriptions.
699
+ #
700
+ jdk.jar.disabledAlgorithms=MD2, MD5, RSA keySize < 1024, \
701
+ DSA keySize < 1024, SHA1 denyAfter 2019-01-01, \
702
+ include jdk.disabled.namedCurves
703
+
704
+ #
705
+ # Algorithm restrictions for Secure Socket Layer/Transport Layer Security
706
+ # (SSL/TLS/DTLS) processing
707
+ #
708
+ # In some environments, certain algorithms or key lengths may be undesirable
709
+ # when using SSL/TLS/DTLS. This section describes the mechanism for disabling
710
+ # algorithms during SSL/TLS/DTLS security parameters negotiation, including
711
+ # protocol version negotiation, cipher suites selection, named groups
712
+ # selection, signature schemes selection, peer authentication and key
713
+ # exchange mechanisms.
714
+ #
715
+ # Disabled algorithms will not be negotiated for SSL/TLS connections, even
716
+ # if they are enabled explicitly in an application.
717
+ #
718
+ # For PKI-based peer authentication and key exchange mechanisms, this list
719
+ # of disabled algorithms will also be checked during certification path
720
+ # building and validation, including algorithms used in certificates, as
721
+ # well as revocation information such as CRLs and signed OCSP Responses.
722
+ # This is in addition to the jdk.certpath.disabledAlgorithms property above.
723
+ #
724
+ # See the specification of "jdk.certpath.disabledAlgorithms" for the
725
+ # syntax of the disabled algorithm string.
726
+ #
727
+ # Note: The algorithm restrictions do not apply to trust anchors or
728
+ # self-signed certificates.
729
+ #
730
+ # Note: This property is currently used by the JDK Reference implementation.
731
+ # It is not guaranteed to be examined and used by other implementations.
732
+ #
733
+ # Example:
734
+ # jdk.tls.disabledAlgorithms=MD5, SSLv3, DSA, RSA keySize < 2048, \
735
+ # rsa_pkcs1_sha1, secp224r1
736
+ jdk.tls.disabledAlgorithms=SSLv3, TLSv1, TLSv1.1, DTLSv1.0, RC4, DES, \
737
+ MD5withRSA, DH keySize < 1024, EC keySize < 224, 3DES_EDE_CBC, anon, NULL, \
738
+ include jdk.disabled.namedCurves
739
+
740
+ #
741
+ # Legacy algorithms for Secure Socket Layer/Transport Layer Security (SSL/TLS)
742
+ # processing in JSSE implementation.
743
+ #
744
+ # In some environments, a certain algorithm may be undesirable but it
745
+ # cannot be disabled because of its use in legacy applications. Legacy
746
+ # algorithms may still be supported, but applications should not use them
747
+ # as the security strength of legacy algorithms are usually not strong enough
748
+ # in practice.
749
+ #
750
+ # During SSL/TLS security parameters negotiation, legacy algorithms will
751
+ # not be negotiated unless there are no other candidates.
752
+ #
753
+ # The syntax of the legacy algorithms string is described as this Java
754
+ # BNF-style:
755
+ # LegacyAlgorithms:
756
+ # " LegacyAlgorithm { , LegacyAlgorithm } "
757
+ #
758
+ # LegacyAlgorithm:
759
+ # AlgorithmName (standard JSSE algorithm name)
760
+ #
761
+ # See the specification of security property "jdk.certpath.disabledAlgorithms"
762
+ # for the syntax and description of the "AlgorithmName" notation.
763
+ #
764
+ # Per SSL/TLS specifications, cipher suites have the form:
765
+ # SSL_KeyExchangeAlg_WITH_CipherAlg_MacAlg
766
+ # or
767
+ # TLS_KeyExchangeAlg_WITH_CipherAlg_MacAlg
768
+ #
769
+ # For example, the cipher suite TLS_RSA_WITH_AES_128_CBC_SHA uses RSA as the
770
+ # key exchange algorithm, AES_128_CBC (128 bits AES cipher algorithm in CBC
771
+ # mode) as the cipher (encryption) algorithm, and SHA-1 as the message digest
772
+ # algorithm for HMAC.
773
+ #
774
+ # The LegacyAlgorithm can be one of the following standard algorithm names:
775
+ # 1. JSSE cipher suite name, e.g., TLS_RSA_WITH_AES_128_CBC_SHA
776
+ # 2. JSSE key exchange algorithm name, e.g., RSA
777
+ # 3. JSSE cipher (encryption) algorithm name, e.g., AES_128_CBC
778
+ # 4. JSSE message digest algorithm name, e.g., SHA
779
+ #
780
+ # See SSL/TLS specifications and the Java Security Standard Algorithm Names
781
+ # Specification for information about the algorithm names.
782
+ #
783
+ # Note: If a legacy algorithm is also restricted through the
784
+ # jdk.tls.disabledAlgorithms property or the
785
+ # java.security.AlgorithmConstraints API (See
786
+ # javax.net.ssl.SSLParameters.setAlgorithmConstraints()),
787
+ # then the algorithm is completely disabled and will not be negotiated.
788
+ #
789
+ # Note: This property is currently used by the JDK Reference implementation.
790
+ # It is not guaranteed to be examined and used by other implementations.
791
+ # There is no guarantee the property will continue to exist or be of the
792
+ # same syntax in future releases.
793
+ #
794
+ # Example:
795
+ # jdk.tls.legacyAlgorithms=DH_anon, DES_CBC, SSL_RSA_WITH_RC4_128_MD5
796
+ #
797
+ jdk.tls.legacyAlgorithms= \
798
+ K_NULL, C_NULL, M_NULL, \
799
+ DH_anon, ECDH_anon, \
800
+ RC4_128, RC4_40, DES_CBC, DES40_CBC, \
801
+ 3DES_EDE_CBC
802
+
803
+ #
804
+ # The pre-defined default finite field Diffie-Hellman ephemeral (DHE)
805
+ # parameters for Transport Layer Security (SSL/TLS/DTLS) processing.
806
+ #
807
+ # In traditional SSL/TLS/DTLS connections where finite field DHE parameters
808
+ # negotiation mechanism is not used, the server offers the client group
809
+ # parameters, base generator g and prime modulus p, for DHE key exchange.
810
+ # It is recommended to use dynamic group parameters. This property defines
811
+ # a mechanism that allows you to specify custom group parameters.
812
+ #
813
+ # The syntax of this property string is described as this Java BNF-style:
814
+ # DefaultDHEParameters:
815
+ # DefinedDHEParameters { , DefinedDHEParameters }
816
+ #
817
+ # DefinedDHEParameters:
818
+ # "{" DHEPrimeModulus , DHEBaseGenerator "}"
819
+ #
820
+ # DHEPrimeModulus:
821
+ # HexadecimalDigits
822
+ #
823
+ # DHEBaseGenerator:
824
+ # HexadecimalDigits
825
+ #
826
+ # HexadecimalDigits:
827
+ # HexadecimalDigit { HexadecimalDigit }
828
+ #
829
+ # HexadecimalDigit: one of
830
+ # 0 1 2 3 4 5 6 7 8 9 A B C D E F a b c d e f
831
+ #
832
+ # Whitespace characters are ignored.
833
+ #
834
+ # The "DefinedDHEParameters" defines the custom group parameters, prime
835
+ # modulus p and base generator g, for a particular size of prime modulus p.
836
+ # The "DHEPrimeModulus" defines the hexadecimal prime modulus p, and the
837
+ # "DHEBaseGenerator" defines the hexadecimal base generator g of a group
838
+ # parameter. It is recommended to use safe primes for the custom group
839
+ # parameters.
840
+ #
841
+ # If this property is not defined or the value is empty, the underlying JSSE
842
+ # provider's default group parameter is used for each connection.
843
+ #
844
+ # If the property value does not follow the grammar, or a particular group
845
+ # parameter is not valid, the connection will fall back and use the
846
+ # underlying JSSE provider's default group parameter.
847
+ #
848
+ # Note: This property is currently used by OpenJDK's JSSE implementation. It
849
+ # is not guaranteed to be examined and used by other implementations.
850
+ #
851
+ # Example:
852
+ # jdk.tls.server.defaultDHEParameters=
853
+ # { \
854
+ # FFFFFFFF FFFFFFFF C90FDAA2 2168C234 C4C6628B 80DC1CD1 \
855
+ # 29024E08 8A67CC74 020BBEA6 3B139B22 514A0879 8E3404DD \
856
+ # EF9519B3 CD3A431B 302B0A6D F25F1437 4FE1356D 6D51C245 \
857
+ # E485B576 625E7EC6 F44C42E9 A637ED6B 0BFF5CB6 F406B7ED \
858
+ # EE386BFB 5A899FA5 AE9F2411 7C4B1FE6 49286651 ECE65381 \
859
+ # FFFFFFFF FFFFFFFF, 2}
860
+
861
+ #
862
+ # TLS key limits on symmetric cryptographic algorithms
863
+ #
864
+ # This security property sets limits on algorithms key usage in TLS 1.3.
865
+ # When the amount of data encrypted exceeds the algorithm value listed below,
866
+ # a KeyUpdate message will trigger a key change. This is for symmetric ciphers
867
+ # with TLS 1.3 only.
868
+ #
869
+ # The syntax for the property is described below:
870
+ # KeyLimits:
871
+ # " KeyLimit { , KeyLimit } "
872
+ #
873
+ # WeakKeyLimit:
874
+ # AlgorithmName Action Length
875
+ #
876
+ # AlgorithmName:
877
+ # A full algorithm transformation.
878
+ #
879
+ # Action:
880
+ # KeyUpdate
881
+ #
882
+ # Length:
883
+ # The amount of encrypted data in a session before the Action occurs
884
+ # This value may be an integer value in bytes, or as a power of two, 2^29.
885
+ #
886
+ # KeyUpdate:
887
+ # The TLS 1.3 KeyUpdate handshake process begins when the Length amount
888
+ # is fulfilled.
889
+ #
890
+ # Note: This property is currently used by OpenJDK's JSSE implementation. It
891
+ # is not guaranteed to be examined and used by other implementations.
892
+ #
893
+ jdk.tls.keyLimits=AES/GCM/NoPadding KeyUpdate 2^37, \
894
+ ChaCha20-Poly1305 KeyUpdate 2^37
895
+
896
+ #
897
+ # Cryptographic Jurisdiction Policy defaults
898
+ #
899
+ # Import and export control rules on cryptographic software vary from
900
+ # country to country. By default, Java provides two different sets of
901
+ # cryptographic policy files[1]:
902
+ #
903
+ # unlimited: These policy files contain no restrictions on cryptographic
904
+ # strengths or algorithms
905
+ #
906
+ # limited: These policy files contain more restricted cryptographic
907
+ # strengths
908
+ #
909
+ # The default setting is determined by the value of the "crypto.policy"
910
+ # Security property below. If your country or usage requires the
911
+ # traditional restrictive policy, the "limited" Java cryptographic
912
+ # policy is still available and may be appropriate for your environment.
913
+ #
914
+ # If you have restrictions that do not fit either use case mentioned
915
+ # above, Java provides the capability to customize these policy files.
916
+ # The "crypto.policy" security property points to a subdirectory
917
+ # within <java-home>/conf/security/policy/ which can be customized.
918
+ # Please see the <java-home>/conf/security/policy/README.txt file or consult
919
+ # the Java Security Guide/JCA documentation for more information.
920
+ #
921
+ # YOU ARE ADVISED TO CONSULT YOUR EXPORT/IMPORT CONTROL COUNSEL OR ATTORNEY
922
+ # TO DETERMINE THE EXACT REQUIREMENTS.
923
+ #
924
+ # [1] Please note that the JCE for Java SE, including the JCE framework,
925
+ # cryptographic policy files, and standard JCE providers provided with
926
+ # the Java SE, have been reviewed and approved for export as mass market
927
+ # encryption item by the US Bureau of Industry and Security.
928
+ #
929
+ # Note: This property is currently used by the JDK Reference implementation.
930
+ # It is not guaranteed to be examined and used by other implementations.
931
+ #
932
+ crypto.policy=unlimited
933
+
934
+ #
935
+ # The policy for the XML Signature secure validation mode. Validation of
936
+ # XML Signatures that violate any of these constraints will fail. The
937
+ # mode is enforced by default. The mode can be disabled by setting the
938
+ # property "org.jcp.xml.dsig.secureValidation" to Boolean.FALSE with the
939
+ # javax.xml.crypto.XMLCryptoContext.setProperty() method.
940
+ #
941
+ # Policy:
942
+ # Constraint {"," Constraint }
943
+ # Constraint:
944
+ # AlgConstraint | MaxTransformsConstraint | MaxReferencesConstraint |
945
+ # ReferenceUriSchemeConstraint | KeySizeConstraint | OtherConstraint
946
+ # AlgConstraint
947
+ # "disallowAlg" Uri
948
+ # MaxTransformsConstraint:
949
+ # "maxTransforms" Integer
950
+ # MaxReferencesConstraint:
951
+ # "maxReferences" Integer
952
+ # ReferenceUriSchemeConstraint:
953
+ # "disallowReferenceUriSchemes" String { String }
954
+ # KeySizeConstraint:
955
+ # "minKeySize" KeyAlg Integer
956
+ # OtherConstraint:
957
+ # "noDuplicateIds" | "noRetrievalMethodLoops"
958
+ #
959
+ # For AlgConstraint, Uri is the algorithm URI String that is not allowed.
960
+ # See the XML Signature Recommendation for more information on algorithm
961
+ # URI Identifiers. For KeySizeConstraint, KeyAlg is the standard algorithm
962
+ # name of the key type (ex: "RSA"). If the MaxTransformsConstraint,
963
+ # MaxReferencesConstraint or KeySizeConstraint (for the same key type) is
964
+ # specified more than once, only the last entry is enforced.
965
+ #
966
+ # Note: This property is currently used by the JDK Reference implementation.
967
+ # It is not guaranteed to be examined and used by other implementations.
968
+ #
969
+ jdk.xml.dsig.secureValidationPolicy=\
970
+ disallowAlg http://www.w3.org/TR/1999/REC-xslt-19991116,\
971
+ disallowAlg http://www.w3.org/2001/04/xmldsig-more#rsa-md5,\
972
+ disallowAlg http://www.w3.org/2001/04/xmldsig-more#hmac-md5,\
973
+ disallowAlg http://www.w3.org/2001/04/xmldsig-more#md5,\
974
+ maxTransforms 5,\
975
+ maxReferences 30,\
976
+ disallowReferenceUriSchemes file http https,\
977
+ minKeySize RSA 1024,\
978
+ minKeySize DSA 1024,\
979
+ minKeySize EC 224,\
980
+ noDuplicateIds,\
981
+ noRetrievalMethodLoops
982
+
983
+ #
984
+ # Serialization process-wide filter
985
+ #
986
+ # A filter, if configured, is used by java.io.ObjectInputStream during
987
+ # deserialization to check the contents of the stream.
988
+ # A filter is configured as a sequence of patterns, each pattern is either
989
+ # matched against the name of a class in the stream or defines a limit.
990
+ # Patterns are separated by ";" (semicolon).
991
+ # Whitespace is significant and is considered part of the pattern.
992
+ #
993
+ # If the system property jdk.serialFilter is also specified on the command
994
+ # line, it supersedes the security property value defined here.
995
+ #
996
+ # If a pattern includes a "=", it sets a limit.
997
+ # If a limit appears more than once the last value is used.
998
+ # Limits are checked before classes regardless of the order in the
999
+ # sequence of patterns.
1000
+ # If any of the limits are exceeded, the filter status is REJECTED.
1001
+ #
1002
+ # maxdepth=value - the maximum depth of a graph
1003
+ # maxrefs=value - the maximum number of internal references
1004
+ # maxbytes=value - the maximum number of bytes in the input stream
1005
+ # maxarray=value - the maximum array length allowed
1006
+ #
1007
+ # Other patterns, from left to right, match the class or package name as
1008
+ # returned from Class.getName.
1009
+ # If the class is an array type, the class or package to be matched is the
1010
+ # element type.
1011
+ # Arrays of any number of dimensions are treated the same as the element type.
1012
+ # For example, a pattern of "!example.Foo", rejects creation of any instance or
1013
+ # array of example.Foo.
1014
+ #
1015
+ # If the pattern starts with "!", the status is REJECTED if the remaining
1016
+ # pattern is matched; otherwise the status is ALLOWED if the pattern matches.
1017
+ # If the pattern contains "/", the non-empty prefix up to the "/" is the
1018
+ # module name;
1019
+ # if the module name matches the module name of the class then
1020
+ # the remaining pattern is matched with the class name.
1021
+ # If there is no "/", the module name is not compared.
1022
+ # If the pattern ends with ".**" it matches any class in the package and all
1023
+ # subpackages.
1024
+ # If the pattern ends with ".*" it matches any class in the package.
1025
+ # If the pattern ends with "*", it matches any class with the pattern as a
1026
+ # prefix.
1027
+ # If the pattern is equal to the class name, it matches.
1028
+ # Otherwise, the status is UNDECIDED.
1029
+ #
1030
+ #jdk.serialFilter=pattern;pattern
1031
+
1032
+ #
1033
+ # RMI Registry Serial Filter
1034
+ #
1035
+ # The filter pattern uses the same format as jdk.serialFilter.
1036
+ # This filter can override the builtin filter if additional types need to be
1037
+ # allowed or rejected from the RMI Registry or to decrease limits but not
1038
+ # to increase limits.
1039
+ # If the limits (maxdepth, maxrefs, or maxbytes) are exceeded, the object is rejected.
1040
+ #
1041
+ # Each non-array type is allowed or rejected if it matches one of the patterns,
1042
+ # evaluated from left to right, and is otherwise allowed. Arrays of any
1043
+ # component type, including subarrays and arrays of primitives, are allowed.
1044
+ #
1045
+ # Array construction of any component type, including subarrays and arrays of
1046
+ # primitives, are allowed unless the length is greater than the maxarray limit.
1047
+ # The filter is applied to each array element.
1048
+ #
1049
+ # Note: This property is currently used by the JDK Reference implementation.
1050
+ # It is not guaranteed to be examined and used by other implementations.
1051
+ #
1052
+ # The built-in filter allows subclasses of allowed classes and
1053
+ # can approximately be represented as the pattern:
1054
+ #
1055
+ #sun.rmi.registry.registryFilter=\
1056
+ # maxarray=1000000;\
1057
+ # maxdepth=20;\
1058
+ # java.lang.String;\
1059
+ # java.lang.Number;\
1060
+ # java.lang.reflect.Proxy;\
1061
+ # java.rmi.Remote;\
1062
+ # sun.rmi.server.UnicastRef;\
1063
+ # sun.rmi.server.RMIClientSocketFactory;\
1064
+ # sun.rmi.server.RMIServerSocketFactory;\
1065
+ # java.rmi.activation.ActivationID;\
1066
+ # java.rmi.server.UID
1067
+ #
1068
+ # RMI Distributed Garbage Collector (DGC) Serial Filter
1069
+ #
1070
+ # The filter pattern uses the same format as jdk.serialFilter.
1071
+ # This filter can override the builtin filter if additional types need to be
1072
+ # allowed or rejected from the RMI DGC.
1073
+ #
1074
+ # Note: This property is currently used by the JDK Reference implementation.
1075
+ # It is not guaranteed to be examined and used by other implementations.
1076
+ #
1077
+ # The builtin DGC filter can approximately be represented as the filter pattern:
1078
+ #
1079
+ #sun.rmi.transport.dgcFilter=\
1080
+ # java.rmi.server.ObjID;\
1081
+ # java.rmi.server.UID;\
1082
+ # java.rmi.dgc.VMID;\
1083
+ # java.rmi.dgc.Lease;\
1084
+ # maxdepth=5;maxarray=10000
1085
+
1086
+ # CORBA ORBIorTypeCheckRegistryFilter
1087
+ # Type check enhancement for ORB::string_to_object processing
1088
+ #
1089
+ # An IOR type check filter, if configured, is used by an ORB during
1090
+ # an ORB::string_to_object invocation to check the veracity of the type encoded
1091
+ # in the ior string.
1092
+ #
1093
+ # The filter pattern consists of a semi-colon separated list of class names.
1094
+ # The configured list contains the binary class names of the IDL interface types
1095
+ # corresponding to the IDL stub class to be instantiated.
1096
+ # As such, a filter specifies a list of IDL stub classes that will be
1097
+ # allowed by an ORB when an ORB::string_to_object is invoked.
1098
+ # It is used to specify a white list configuration of acceptable
1099
+ # IDL stub types which may be contained in a stringified IOR
1100
+ # parameter passed as input to an ORB::string_to_object method.
1101
+ #
1102
+ # Note: This property is currently used by the JDK Reference implementation.
1103
+ # It is not guaranteed to be examined and used by other implementations.
1104
+ #
1105
+ #com.sun.CORBA.ORBIorTypeCheckRegistryFilter=binary_class_name;binary_class_name
1106
+
1107
+ # The iteration count used for password-based encryption (PBE) in JCEKS
1108
+ # keystores. Values in the range 10000 to 5000000 are considered valid.
1109
+ # If the value is out of this range, or is not a number, or is unspecified;
1110
+ # a default of 200000 is used.
1111
+ #
1112
+ # If the system property jdk.jceks.iterationCount is also specified, it
1113
+ # supersedes the security property value defined here.
1114
+ #
1115
+ #jdk.jceks.iterationCount = 200000
1116
+
1117
+ #
1118
+ # JCEKS Encrypted Key Serial Filter
1119
+ #
1120
+ # This filter, if configured, is used by the JCEKS KeyStore during the
1121
+ # deserialization of the encrypted Key object stored inside a key entry.
1122
+ # If not configured or the filter result is UNDECIDED (i.e. none of the patterns
1123
+ # matches), the filter configured by jdk.serialFilter will be consulted.
1124
+ #
1125
+ # If the system property jceks.key.serialFilter is also specified, it supersedes
1126
+ # the security property value defined here.
1127
+ #
1128
+ # The filter pattern uses the same format as jdk.serialFilter. The default
1129
+ # pattern allows java.lang.Enum, java.security.KeyRep, java.security.KeyRep$Type,
1130
+ # and javax.crypto.spec.SecretKeySpec and rejects all the others.
1131
+ jceks.key.serialFilter = java.base/java.lang.Enum;java.base/java.security.KeyRep;\
1132
+ java.base/java.security.KeyRep$Type;java.base/javax.crypto.spec.SecretKeySpec;!*
1133
+
1134
+ #
1135
+ # PKCS12 KeyStore properties
1136
+ #
1137
+ # The following properties, if configured, are used by the PKCS12 KeyStore
1138
+ # implementation during the creation of a new keystore. Several of the
1139
+ # properties may also be used when modifying an existing keystore. The
1140
+ # properties can be overridden by a KeyStore API that specifies its own
1141
+ # algorithms and parameters.
1142
+ #
1143
+ # If an existing PKCS12 keystore is loaded and then stored, the algorithm and
1144
+ # parameter used to generate the existing Mac will be reused. If the existing
1145
+ # keystore does not have a Mac, no Mac will be created while storing. If there
1146
+ # is at least one certificate in the existing keystore, the algorithm and
1147
+ # parameters used to encrypt the last certificate in the existing keystore will
1148
+ # be reused to encrypt all certificates while storing. If the last certificate
1149
+ # in the existing keystore is not encrypted, all certificates will be stored
1150
+ # unencrypted. If there is no certificate in the existing keystore, any newly
1151
+ # added certificate will be encrypted (or stored unencrypted if algorithm
1152
+ # value is "NONE") using the "keystore.pkcs12.certProtectionAlgorithm" and
1153
+ # "keystore.pkcs12.certPbeIterationCount" values defined here. Existing private
1154
+ # and secret key(s) are not changed. Newly set private and secret key(s) will
1155
+ # be encrypted using the "keystore.pkcs12.keyProtectionAlgorithm" and
1156
+ # "keystore.pkcs12.keyPbeIterationCount" values defined here.
1157
+ #
1158
+ # In order to apply new algorithms and parameters to all entries in an
1159
+ # existing keystore, one can create a new keystore and add entries in the
1160
+ # existing keystore into the new keystore. This can be achieved by calling the
1161
+ # "keytool -importkeystore" command.
1162
+ #
1163
+ # If a system property of the same name is also specified, it supersedes the
1164
+ # security property value defined here.
1165
+ #
1166
+ # If the property is set to an illegal value,
1167
+ # an iteration count that is not a positive integer, or an unknown algorithm
1168
+ # name, an exception will be thrown when the property is used.
1169
+ # If the property is not set or empty, a default value will be used.
1170
+ #
1171
+ # Note: These properties are currently used by the JDK Reference implementation.
1172
+ # They are not guaranteed to be examined and used by other implementations.
1173
+
1174
+ # The algorithm used to encrypt a certificate. This can be any non-Hmac PBE
1175
+ # algorithm defined in the Cipher section of the Java Security Standard
1176
+ # Algorithm Names Specification. When set to "NONE", the certificate
1177
+ # is not encrypted. The default value is "PBEWithHmacSHA256AndAES_256".
1178
+ #keystore.pkcs12.certProtectionAlgorithm = PBEWithHmacSHA256AndAES_256
1179
+
1180
+ # The iteration count used by the PBE algorithm when encrypting a certificate.
1181
+ # This value must be a positive integer. The default value is 10000.
1182
+ #keystore.pkcs12.certPbeIterationCount = 10000
1183
+
1184
+ # The algorithm used to encrypt a private key or secret key. This can be
1185
+ # any non-Hmac PBE algorithm defined in the Cipher section of the Java
1186
+ # Security Standard Algorithm Names Specification. The value must not be "NONE".
1187
+ # The default value is "PBEWithHmacSHA256AndAES_256".
1188
+ #keystore.pkcs12.keyProtectionAlgorithm = PBEWithHmacSHA256AndAES_256
1189
+
1190
+ # The iteration count used by the PBE algorithm when encrypting a private key
1191
+ # or a secret key. This value must be a positive integer. The default value
1192
+ # is 10000.
1193
+ #keystore.pkcs12.keyPbeIterationCount = 10000
1194
+
1195
+ # The algorithm used to calculate the optional MacData at the end of a PKCS12
1196
+ # file. This can be any HmacPBE algorithm defined in the Mac section of the
1197
+ # Java Security Standard Algorithm Names Specification. When set to "NONE",
1198
+ # no Mac is generated. The default value is "HmacPBESHA256".
1199
+ #keystore.pkcs12.macAlgorithm = HmacPBESHA256
1200
+
1201
+ # The iteration count used by the MacData algorithm. This value must be a
1202
+ # positive integer. The default value is 10000.
1203
+ #keystore.pkcs12.macIterationCount = 10000
1204
+
1205
+ #
1206
+ # Enhanced exception message information
1207
+ #
1208
+ # By default, exception messages should not include potentially sensitive
1209
+ # information such as file names, host names, or port numbers. This property
1210
+ # accepts one or more comma separated values, each of which represents a
1211
+ # category of enhanced exception message information to enable. Values are
1212
+ # case-insensitive. Leading and trailing whitespaces, surrounding each value,
1213
+ # are ignored. Unknown values are ignored.
1214
+ #
1215
+ # NOTE: Use caution before setting this property. Setting this property
1216
+ # exposes sensitive information in Exceptions, which could, for example,
1217
+ # propagate to untrusted code or be emitted in stack traces that are
1218
+ # inadvertently disclosed and made accessible over a public network.
1219
+ #
1220
+ # The categories are:
1221
+ #
1222
+ # hostInfo - IOExceptions thrown by java.net.Socket and the socket types in the
1223
+ # java.nio.channels package will contain enhanced exception
1224
+ # message information
1225
+ #
1226
+ # The property setting in this file can be overridden by a system property of
1227
+ # the same name, with the same syntax and possible values.
1228
+ #
1229
+ #jdk.includeInExceptions=hostInfo
1230
+
1231
+ #
1232
+ # Disabled mechanisms for the Simple Authentication and Security Layer (SASL)
1233
+ #
1234
+ # Disabled mechanisms will not be negotiated by both SASL clients and servers.
1235
+ # These mechanisms will be ignored if they are specified in the "mechanisms"
1236
+ # argument of "Sasl.createSaslClient" or the "mechanism" argument of
1237
+ # "Sasl.createSaslServer".
1238
+ #
1239
+ # The value of this property is a comma-separated list of SASL mechanisms.
1240
+ # The mechanisms are case-sensitive. Whitespaces around the commas are ignored.
1241
+ #
1242
+ # Note: This property is currently used by the JDK Reference implementation.
1243
+ # It is not guaranteed to be examined and used by other implementations.
1244
+ #
1245
+ # Example:
1246
+ # jdk.sasl.disabledMechanisms=PLAIN, CRAM-MD5, DIGEST-MD5
1247
+ jdk.sasl.disabledMechanisms=
1248
+
1249
+ #
1250
+ # Policies for distrusting Certificate Authorities (CAs).
1251
+ #
1252
+ # This is a comma separated value of one or more case-sensitive strings, each
1253
+ # of which represents a policy for determining if a CA should be distrusted.
1254
+ # The supported values are:
1255
+ #
1256
+ # SYMANTEC_TLS : Distrust TLS Server certificates anchored by a Symantec
1257
+ # root CA and issued after April 16, 2019 unless issued by one of the
1258
+ # following subordinate CAs which have a later distrust date:
1259
+ # 1. Apple IST CA 2 - G1, SHA-256 fingerprint:
1260
+ # AC2B922ECFD5E01711772FEA8ED372DE9D1E2245FCE3F57A9CDBEC77296A424B
1261
+ # Distrust after December 31, 2019.
1262
+ # 2. Apple IST CA 8 - G1, SHA-256 fingerprint:
1263
+ # A4FE7C7F15155F3F0AEF7AAA83CF6E06DEB97CA3F909DF920AC1490882D488ED
1264
+ # Distrust after December 31, 2019.
1265
+ #
1266
+ # Leading and trailing whitespace surrounding each value are ignored.
1267
+ # Unknown values are ignored. If the property is commented out or set to the
1268
+ # empty String, no policies are enforced.
1269
+ #
1270
+ # Note: This property is currently used by the JDK Reference implementation.
1271
+ # It is not guaranteed to be supported by other SE implementations. Also, this
1272
+ # property does not override other security properties which can restrict
1273
+ # certificates such as jdk.tls.disabledAlgorithms or
1274
+ # jdk.certpath.disabledAlgorithms; those restrictions are still enforced even
1275
+ # if this property is not enabled.
1276
+ #
1277
+ jdk.security.caDistrustPolicies=SYMANTEC_TLS
1278
+
1279
+ #
1280
+ # FilePermission path canonicalization
1281
+ #
1282
+ # This security property dictates how the path argument is processed and stored
1283
+ # while constructing a FilePermission object. If the value is set to true, the
1284
+ # path argument is canonicalized and FilePermission methods (such as implies,
1285
+ # equals, and hashCode) are implemented based on this canonicalized result.
1286
+ # Otherwise, the path argument is not canonicalized and FilePermission methods are
1287
+ # implemented based on the original input. See the implementation note of the
1288
+ # FilePermission class for more details.
1289
+ #
1290
+ # If a system property of the same name is also specified, it supersedes the
1291
+ # security property value defined here.
1292
+ #
1293
+ # The default value for this property is false.
1294
+ #
1295
+ jdk.io.permissionsUseCanonicalPath=false
1296
+
1297
+ #
1298
+ # Support for the here() function
1299
+ #
1300
+ # This security property determines whether the here() XPath function is
1301
+ # supported in XML Signature generation and verification.
1302
+ #
1303
+ # If this property is set to false, the here() function is not supported.
1304
+ # Generating an XML Signature that uses the here() function will throw an
1305
+ # XMLSignatureException. Validating an existing XML Signature that uses the
1306
+ # here() function will also throw an XMLSignatureException.
1307
+ #
1308
+ # The default value for this property is true.
1309
+ #
1310
+ # Note: This property is currently used by the JDK Reference implementation.
1311
+ # It is not guaranteed to be examined and used by other implementations.
1312
+ #
1313
+ #jdk.xml.dsig.hereFunctionSupported=true
1314
+
1315
+ #
1316
+ # Policies for the proxy_impersonator Kerberos ccache configuration entry
1317
+ #
1318
+ # The proxy_impersonator ccache configuration entry indicates that the ccache
1319
+ # is a synthetic delegated credential for use with S4U2Proxy by an intermediate
1320
+ # server. The ccache file should also contain the TGT of this server and
1321
+ # an evidence ticket from the default principal of the ccache to this server.
1322
+ #
1323
+ # This security property determines how Java uses this configuration entry.
1324
+ # There are 3 possible values:
1325
+ #
1326
+ # no-impersonate - Ignore this configuration entry, and always act as
1327
+ # the owner of the TGT (if it exists).
1328
+ #
1329
+ # try-impersonate - Try impersonation when this configuration entry exists.
1330
+ # If no matching TGT or evidence ticket is found,
1331
+ # fallback to no-impersonate.
1332
+ #
1333
+ # always-impersonate - Always impersonate when this configuration entry exists.
1334
+ # If no matching TGT or evidence ticket is found,
1335
+ # no initial credential is read from the ccache.
1336
+ #
1337
+ # The default value is "always-impersonate".
1338
+ #
1339
+ # If a system property of the same name is also specified, it supersedes the
1340
+ # security property value defined here.
1341
+ #
1342
+ #jdk.security.krb5.default.initiate.credential=always-impersonate
1343
+
1344
+ #
1345
+ # Trust Anchor Certificates - CA Basic Constraint check
1346
+ #
1347
+ # X.509 v3 certificates used as Trust Anchors (to validate signed code or TLS
1348
+ # connections) must have the cA Basic Constraint field set to 'true'. Also, if
1349
+ # they include a Key Usage extension, the keyCertSign bit must be set. These
1350
+ # checks, enabled by default, can be disabled for backward-compatibility
1351
+ # purposes with the jdk.security.allowNonCaAnchor System and Security
1352
+ # properties. In the case that both properties are simultaneously set, the
1353
+ # System value prevails. The default value of the property is "false".
1354
+ #
1355
+ #jdk.security.allowNonCaAnchor=true
1356
+
1357
+ # JNDI Object Factories Filter
1358
+ #
1359
+ # This filter is used by the JNDI runtime to control the set of object factory classes
1360
+ # which will be allowed to instantiate objects from object references returned by
1361
+ # naming/directory systems. The factory class named by the reference instance will be
1362
+ # matched against this filter. The filter property supports pattern-based filter syntax
1363
+ # with the same format as jdk.serialFilter.
1364
+ #
1365
+ # Each pattern is matched against the factory class name to allow or disallow it's
1366
+ # instantiation. The access to a factory class is allowed unless the filter returns
1367
+ # REJECTED.
1368
+ #
1369
+ # Note: This property is currently used by the JDK Reference implementation.
1370
+ # It is not guaranteed to be examined and used by other implementations.
1371
+ #
1372
+ # If the system property jdk.jndi.object.factoriesFilter is also specified, it supersedes
1373
+ # the security property value defined here. The default value of the property is "*".
1374
+ #
1375
+ # The default pattern value allows any object factory class specified by the reference
1376
+ # instance to recreate the referenced object.
1377
+ #jdk.jndi.object.factoriesFilter=*
1378
+
1379
+ #
1380
+ # The default Character set name (java.nio.charset.Charset.forName())
1381
+ # for converting TLS ALPN values between byte arrays and Strings.
1382
+ # Prior versions of the JDK may use UTF-8 as the default charset. If
1383
+ # you experience interoperability issues, setting this property to UTF-8
1384
+ # may help.
1385
+ #
1386
+ # jdk.tls.alpnCharset=UTF-8
1387
+ jdk.tls.alpnCharset=ISO_8859_1
platform/dbops/binaries/java/jre11/conf/security/policy/README.txt ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ Java(TM) Cryptography Extension Policy Files
3
+ for the Java(TM) Platform, Standard Edition Runtime Environment
4
+
5
+ README
6
+ ------------------------------------------------------------------------
7
+
8
+ Import and export control rules on cryptographic software vary from
9
+ country to country. The Java Cryptography Extension (JCE) architecture
10
+ allows flexible cryptographic key strength to be configured via the
11
+ jurisdiction policy files which are referenced by the "crypto.policy"
12
+ security property in the <java-home>/conf/security/java.security file.
13
+
14
+ By default, Java provides two different sets of cryptographic policy
15
+ files:
16
+
17
+ unlimited: These policy files contain no restrictions on cryptographic
18
+ strengths or algorithms
19
+
20
+ limited: These policy files contain more restricted cryptographic
21
+ strengths
22
+
23
+ These files reside in <java-home>/conf/security/policy in the "unlimited"
24
+ or "limited" subdirectories respectively.
25
+
26
+ Each subdirectory contains a complete policy configuration,
27
+ and subdirectories can be added/edited/removed to reflect your
28
+ import or export control product requirements.
29
+
30
+ Within a subdirectory, the effective policy is the combined minimum
31
+ permissions of the grant statements in the file(s) matching the filename
32
+ pattern "default_*.policy". At least one grant is required. For example:
33
+
34
+ limited = Export (all) + Import (limited) = Limited
35
+ unlimited = Export (all) + Import (all) = Unlimited
36
+
37
+ The effective exemption policy is the combined minimum permissions
38
+ of the grant statements in the file(s) matching the filename pattern
39
+ "exempt_*.policy". Exemption grants are optional. For example:
40
+
41
+ limited = grants exemption permissions, by which the
42
+ effective policy can be circumvented.
43
+ e.g. KeyRecovery/KeyEscrow/KeyWeakening.
44
+
45
+ Please see the Java Cryptography Architecture (JCA) documentation for
46
+ additional information on these files and formats.
47
+
48
+ YOU ARE ADVISED TO CONSULT YOUR EXPORT/IMPORT CONTROL COUNSEL OR ATTORNEY
49
+ TO DETERMINE THE EXACT REQUIREMENTS.
50
+
51
+ Please note that the JCE for Java SE, including the JCE framework,
52
+ cryptographic policy files, and standard JCE providers provided with
53
+ the Java SE, have been reviewed and approved for export as mass market
54
+ encryption item by the US Bureau of Industry and Security.
platform/dbops/binaries/java/jre11/conf/security/policy/limited/default_US_export.policy ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ // Default US Export policy file.
2
+
3
+ grant {
4
+ // There is no restriction to any algorithms.
5
+ permission javax.crypto.CryptoAllPermission;
6
+ };
platform/dbops/binaries/java/jre11/conf/security/policy/limited/default_local.policy ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Some countries have import limits on crypto strength. This policy file
2
+ // is worldwide importable.
3
+
4
+ grant {
5
+ permission javax.crypto.CryptoPermission "DES", 64;
6
+ permission javax.crypto.CryptoPermission "DESede", *;
7
+ permission javax.crypto.CryptoPermission "RC2", 128,
8
+ "javax.crypto.spec.RC2ParameterSpec", 128;
9
+ permission javax.crypto.CryptoPermission "RC4", 128;
10
+ permission javax.crypto.CryptoPermission "RC5", 128,
11
+ "javax.crypto.spec.RC5ParameterSpec", *, 12, *;
12
+ permission javax.crypto.CryptoPermission "RSA", *;
13
+ permission javax.crypto.CryptoPermission *, 128;
14
+ };
platform/dbops/binaries/java/jre11/conf/security/policy/limited/exempt_local.policy ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Some countries have import limits on crypto strength, but may allow for
2
+ // these exemptions if the exemption mechanism is used.
3
+
4
+ grant {
5
+ // There is no restriction to any algorithms if KeyRecovery is enforced.
6
+ permission javax.crypto.CryptoPermission *, "KeyRecovery";
7
+
8
+ // There is no restriction to any algorithms if KeyEscrow is enforced.
9
+ permission javax.crypto.CryptoPermission *, "KeyEscrow";
10
+
11
+ // There is no restriction to any algorithms if KeyWeakening is enforced.
12
+ permission javax.crypto.CryptoPermission *, "KeyWeakening";
13
+ };
platform/dbops/binaries/java/jre11/conf/security/policy/unlimited/default_US_export.policy ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ // Default US Export policy file.
2
+
3
+ grant {
4
+ // There is no restriction to any algorithms.
5
+ permission javax.crypto.CryptoAllPermission;
6
+ };