All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gruelbox.transactionoutbox.TransactionalInvocation Maven / Gradle / Ivy

package com.gruelbox.transactionoutbox;

import lombok.Value;

/**
 * Describes a method invocation along with the transaction scope in which it should be performed.
 */
@Value
public class TransactionalInvocation {
  Class clazz;
  String methodName;
  Class[] parameters;
  Object[] args;
  Transaction transaction;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy