BatchSyncProcedureImpl

annotation class BatchSyncProcedureImpl

The BatchSyncProcedureImpl annotation is useful to indicate an implementation of a com.tecknobit.equinoxbackend.batch.BatchSynchronizationProcedure



 // not mandatory
  description= """
         Informative description about the behavior of the implemented procedure"
        """ // suggested text block
)
public class SimpleBatchQuerySyncProcedure extends BatchSynchronizationProcedure<Integer, String, SimpleCalendarBatchItem> {
     ... rest of the procedure
}

Author

N7ghtm4r3 - Tecknobit

Since

1.0.8

Functions

Link copied to clipboard
abstract fun annotationType(): Class<out Annotation>
Link copied to clipboard
abstract fun description(): String
Informative description about the behavior of the implemented procedure
Link copied to clipboard
abstract fun equals(p: Any): Boolean
Link copied to clipboard
abstract fun hashCode(): Int
Link copied to clipboard
abstract fun toString(): String