Skip to content

Commit 66cfb6f

Browse files
authored
Merge pull request #171 from iot-dsa-v2/develop
0.72.1
2 parents 407d1fc + 256d4d0 commit 66cfb6f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+179
-84
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ subprojects {
55
apply plugin: 'maven'
66

77
group 'org.iot-dsa'
8-
version '0.72.0'
8+
version '0.72.1'
99

1010
targetCompatibility = JavaVersion.VERSION_1_8
1111
sourceCompatibility = JavaVersion.VERSION_1_8

dslink-v2-api/src/main/java/org/iot/dsa/DSRuntime.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ public RuntimeThread() {
209209
setDaemon(true);
210210
}
211211

212+
@Override
212213
public void run() {
213214
long delta;
214215
while (alive) {
@@ -235,6 +236,7 @@ private static class ShutdownThread extends Thread {
235236
super("DSRuntime Shutdown Hook");
236237
}
237238

239+
@Override
238240
public void run() {
239241
shutdown();
240242
}
@@ -329,6 +331,7 @@ public long nextRun() {
329331
/**
330332
* Do not call.
331333
*/
334+
@Override
332335
public void run() {
333336
try {
334337
runnable.run();
@@ -356,6 +359,7 @@ public Timer setSkipMissedIntervals(boolean skipMissed) {
356359
return this;
357360
}
358361

362+
@Override
359363
public String toString() {
360364
StringBuilder buf = new StringBuilder();
361365
Time.encode(nextRun(), false, buf);

dslink-v2-api/src/main/java/org/iot/dsa/DSThreadPool.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ public DSThread(String name) {
182182
setDaemon(true);
183183
}
184184

185+
@Override
185186
public void run() {
186187
long start;
187188
Runnable r = null;

dslink-v2-api/src/main/java/org/iot/dsa/conn/DSConnection.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,7 @@ protected synchronized void onEnabled() {
319319
/**
320320
* Calls startUpdateTimer()
321321
*/
322+
@Override
322323
protected void onStable() {
323324
super.onStable();
324325
startUpdateTimer();

dslink-v2-api/src/main/java/org/iot/dsa/dslink/Action.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ public boolean isVoid() {
100100
return this == VOID;
101101
}
102102

103+
@Override
103104
public String toString() {
104105
return display;
105106
}

dslink-v2-api/src/main/java/org/iot/dsa/dslink/DSLink.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ public static void main(String[] args) {
157157
* Calls starts, waits the stableDelay, then calls stable. Does not return until
158158
* this node is stopped.
159159
*/
160+
@Override
160161
public void run() {
161162
synchronized (this) {
162163
if (runThread != null) {

dslink-v2-api/src/main/java/org/iot/dsa/dslink/responder/InboundInvokeRequest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public interface InboundInvokeRequest extends InboundRequest, DSIActionRequest {
1414
/**
1515
* The parameters supplied by the invoker, or null.
1616
*/
17+
@Override
1718
public DSMap getParameters();
1819

1920
}

dslink-v2-api/src/main/java/org/iot/dsa/io/AbstractWriter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ public AbstractWriter key(CharSequence arg) {
176176
/**
177177
* Returns 0 by default.
178178
*/
179+
@Override
179180
public int length() {
180181
return 0;
181182
}

dslink-v2-api/src/main/java/org/iot/dsa/io/DSIReader.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public interface DSIReader extends Closeable {
3434
/**
3535
* Close the input.
3636
*/
37+
@Override
3738
public void close();
3839

3940
/**

dslink-v2-api/src/main/java/org/iot/dsa/io/DSIWriter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ public interface DSIWriter extends Closeable {
6262
/**
6363
* Close the stream. IOExceptions will be wrapped in runtime exceptions.
6464
*/
65+
@Override
6566
public void close();
6667

6768
/**

0 commit comments

Comments
 (0)