File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
session-state-machine/src/main/scala/zio/raft/sessionstatemachine Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -147,13 +147,15 @@ package object sessionstatemachine:
147147 * Per Raft dissertation Chapter 6.3, the client should create a new session and retry the operation.
148148 */
149149 case ResponseEvicted extends RequestError [Nothing ]
150+
150151 /** Command execution failed with a user-defined error.
151152 *
152- * This error occurs when the state machine's applyCommand method returns a failure.
153- * The error is cached to maintain idempotency - duplicate requests will return the same error.
154- * Unlike ResponseEvicted, the client can retry with the same session or handle the error appropriately.
153+ * This error occurs when the state machine's applyCommand method returns a failure. The error is cached to
154+ * maintain idempotency - duplicate requests will return the same error. Unlike ResponseEvicted, the client can
155+ * retry with the same session or handle the error appropriately.
155156 *
156- * @param e The user-defined error value
157+ * @param e
158+ * The user-defined error value
157159 */
158160 case UserError (e : E ) extends RequestError [E ]
159161
You can’t perform that action at this time.
0 commit comments