We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10fa688 commit cc42774Copy full SHA for cc42774
2 files changed
src/net/sharksystem/asap/ASAPEngine.java
@@ -726,6 +726,11 @@ public int getOldestEra() {
726
public int getEra() {
727
return this.era;
728
}
729
+
730
+ public CharSequence getFormat() {
731
+ return this.format;
732
+ }
733
734
735
// public int getNextEra(int era) {
736
// return this.
src/net/sharksystem/asap/ASAPStorage.java
@@ -57,6 +57,12 @@ public interface ASAPStorage {
57
*/
58
CharSequence getOwner();
59
60
+ /**
61
+ *
62
+ * @return storage format / app
63
+ */
64
+ CharSequence getFormat();
65
66
/**
67
* Creates a channel with named recipients - we call it a closed channel in opposite
68
* to an open channel.
0 commit comments