Skip to content

Commit

Permalink
Notes
Browse files Browse the repository at this point in the history
  • Loading branch information
fvilla committed Nov 12, 2024
1 parent de2811e commit 233b588
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,14 @@ public class OperationImpl implements Operation {
* What should be passed: an agent that will own the activity; the current context scope for graph
* operations; the activity type
* <p>
* What can be passed: an activity as the parent of the one we create here; content for the activity
* such as description
*
* What can be passed: another operation so that its activity becomes the parent of the one we create
* here AND the transaction isn't finished upon execution; content for the activity such as description
* <p>
* The store/link methods use the same on the database, under the transaction we opened.
*
* Each ExecutorOperation must include a previously built Operation; only the wrapping one should
* commit/rollback.
*
* @param arguments
*/
public OperationImpl(Object... arguments) {
Expand All @@ -82,7 +86,6 @@ public OperationImpl(Object... arguments) {
// open the transaction for the remaining operations
}


@Override
public Agent getAgent() {
return null;
Expand Down

0 comments on commit 233b588

Please sign in to comment.