From ccde3b5ce3419b22a3081813aa3a3a28587ee926 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Tue, 5 May 2015 09:53:21 +1000 Subject: [PATCH] Clarify concurrency of Respond. --- fuseops/ops.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fuseops/ops.go b/fuseops/ops.go index a683880..9537d13 100644 --- a/fuseops/ops.go +++ b/fuseops/ops.go @@ -41,6 +41,9 @@ type Op interface { // Repond to the operation with the supplied error. If there is no error, set // any necessary output fields and then call Respond(nil). + // + // Once this is invoked, you must exclude any further calls to any method of + // this op. Respond(error) // Log information tied to this operation, with semantics equivalent to