-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
300 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 106 additions & 0 deletions
106
src/main/java/io/nats/client/ForceReconnectOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
// Copyright 2024 The NATS Authors | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at: | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package io.nats.client; | ||
|
||
import java.time.Duration; | ||
|
||
/** | ||
* The PublishOptions class specifies the options for publishing with JetStream enabled servers. | ||
* Options are created using a {@link ForceReconnectOptions.Builder Builder}. | ||
*/ | ||
public class ForceReconnectOptions { | ||
|
||
public static final ForceReconnectOptions FORCE_CLOSE_INSTANCE = ForceReconnectOptions.builder().forceClose().build(); | ||
|
||
private final boolean forceClose; | ||
private final Duration flushWait; | ||
|
||
private ForceReconnectOptions(Builder b) { | ||
this.forceClose = b.forceClose; | ||
this.flushWait = b.flushWait; | ||
} | ||
|
||
public boolean isForceClose() { | ||
return forceClose; | ||
} | ||
|
||
public boolean isFlush() { | ||
return flushWait != null; | ||
} | ||
|
||
public Duration getFlushWait() { | ||
return flushWait; | ||
} | ||
|
||
/** | ||
* Creates a builder for the options. | ||
* @return the builder | ||
*/ | ||
public static Builder builder() { | ||
return new Builder(); | ||
} | ||
|
||
/** | ||
* ForceReconnectOptions are created using a Builder. | ||
*/ | ||
public static class Builder { | ||
boolean forceClose = false; | ||
Duration flushWait; | ||
|
||
/** | ||
* Constructs a new Builder with the default values. | ||
*/ | ||
public Builder() {} | ||
|
||
public Builder forceClose() { | ||
this.forceClose = true; | ||
return this; | ||
} | ||
|
||
/** | ||
* @param flushWait if supplied and at least 1 millisecond, the forceReconnect will try to | ||
* flush before closing for the specified wait time. Flush happens before close | ||
* so not affected by forceClose option | ||
* @return the builder | ||
*/ | ||
public Builder flush(Duration flushWait) { | ||
this.flushWait = flushWait == null || flushWait.toMillis() < 1 ? null : flushWait; | ||
return this; | ||
} | ||
|
||
/** | ||
* @param flushWaitMillis if supplied and at least 1 millisecond, the forceReconnect will try to | ||
* flush before closing for the specified wait time. Flush happens before close | ||
* so not affected by forceClose option | ||
* @return the builder | ||
*/ | ||
public Builder flush(long flushWaitMillis) { | ||
if (flushWaitMillis > 0) { | ||
this.flushWait = Duration.ofMillis(flushWaitMillis); | ||
} | ||
else { | ||
this.flushWait = null; | ||
} | ||
return this; | ||
} | ||
|
||
/** | ||
* Builds the ForceReconnectOptions. | ||
* @return ForceReconnectOptions | ||
*/ | ||
public ForceReconnectOptions build() { | ||
return new ForceReconnectOptions(this); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
src/test/java/io/nats/client/impl/ForceReconnectQueueCheckDataPort.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright 2024 The NATS Authors | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at: | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package io.nats.client.impl; | ||
|
||
import java.io.IOException; | ||
|
||
public class ForceReconnectQueueCheckDataPort extends SocketDataPort { | ||
public static String WRITE_CHECK; | ||
public static long DELAY; | ||
|
||
@Override | ||
public void write(byte[] src, int toWrite) throws IOException { | ||
String s = new String(src, 0, Math.min(7, toWrite)); | ||
if (s.startsWith(WRITE_CHECK)) { | ||
try { | ||
Thread.sleep(DELAY); | ||
} | ||
catch (InterruptedException e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
super.write(src, toWrite); | ||
} | ||
} |
Oops, something went wrong.