Skip to content

Commit 082b7e9

Browse files
committed
fixed tests and addressed code quality bot feedback
1 parent 53e5a82 commit 082b7e9

File tree

3 files changed

+1
-28
lines changed

3 files changed

+1
-28
lines changed

client/src/main/java/com/microsoft/durabletask/CleanEntityStorageRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,5 @@ public boolean isContinueUntilComplete() {
105105
return this.continueUntilComplete;
106106
}
107107

108-
private boolean continueUntilComplete = true;
108+
private boolean continueUntilComplete = false;
109109
}

client/src/main/java/com/microsoft/durabletask/TaskOrchestrationContext.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -629,19 +629,6 @@ default void signalEntity(@Nonnull EntityInstanceId entityId, @Nonnull String op
629629
this.signalEntity(entityId, operationName, input, null);
630630
}
631631

632-
/**
633-
* Sends a fire-and-forget signal to a durable entity with the specified options but no input.
634-
* <p>
635-
* This is useful for scheduling a signal for future delivery without passing any input data.
636-
*
637-
* @param entityId the unique identifier of the target entity
638-
* @param operationName the name of the operation to invoke on the entity
639-
* @param options signal options such as scheduled delivery time
640-
*/
641-
default void signalEntity(@Nonnull EntityInstanceId entityId, @Nonnull String operationName, @Nonnull SignalEntityOptions options) {
642-
this.signalEntity(entityId, operationName, null, options);
643-
}
644-
645632
/**
646633
* Sends a fire-and-forget signal to a durable entity with the specified input and options.
647634
* <p>

client/src/main/java/com/microsoft/durabletask/TaskOrchestrationEntityFeature.java

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -146,20 +146,6 @@ public void signalEntity(
146146
this.signalEntity(entityId, operationName, input, null);
147147
}
148148

149-
/**
150-
* Signals an entity operation with options but no input.
151-
*
152-
* @param entityId the target entity
153-
* @param operationName the operation name
154-
* @param options signal options such as scheduled delivery time
155-
*/
156-
public void signalEntity(
157-
@Nonnull EntityInstanceId entityId,
158-
@Nonnull String operationName,
159-
@Nonnull SignalEntityOptions options) {
160-
this.signalEntity(entityId, operationName, null, options);
161-
}
162-
163149
/**
164150
* Acquires one or more entity locks.
165151
*

0 commit comments

Comments
 (0)