Uses of Class
com.avoka.fc.core.entity.EventOutbox
Package
Description
Provides the Data Access Objects used by SmartForm Manager.
Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.
Provides the SmartForm Manager service classes.
Provides web automated test services.
-
Uses of EventOutbox in com.avoka.fc.core.dao
Modifier and TypeMethodDescriptionEventOutboxDao.getEventOutboxForId
(Long id) Return the EventOutbox entity for the given EventOutbox id.Modifier and TypeMethodDescriptionEventOutboxDao.getEventListForProcessing
(int fetchLimit, int queueTimeout, int inProgressTimeout, int maxRetry) Return the list of EventOutbox entities which needs to be processed -
Uses of EventOutbox in com.avoka.fc.core.entity.auto
Modifier and TypeFieldDescriptionstatic final org.apache.cayenne.exp.Property
<EventOutbox> _ErrorLog.EVENT_OUTBOX
Provides the 'EVENT_OUTBOX' property.static final org.apache.cayenne.exp.Property
<List<EventOutbox>> _UserAccount.EVENT_OUTBOX
Provides the 'EVENT_OUTBOX' property.static final org.apache.cayenne.exp.Property
<List<EventOutbox>> _ServiceConnection.EVENT_OUTBOX_SERVICE_CONNECTION
Provides the 'EVENT_OUTBOX_SERVICE_CONNECTION' property.Modifier and TypeMethodDescription_UserAccount.getEventOutbox()
Return the EventOutbox._ServiceConnection.getEventOutboxServiceConnection()
Return the EventOutboxServiceConnection.Modifier and TypeMethodDescriptionvoid
_UserAccount.addToEventOutbox
(EventOutbox obj) Add the EventOutbox object.void
_ServiceConnection.addToEventOutboxServiceConnection
(EventOutbox obj) Add the EventOutboxServiceConnection object.void
_UserAccount.removeFromEventOutbox
(EventOutbox obj) Remove the EventOutbox object.void
_ServiceConnection.removeFromEventOutboxServiceConnection
(EventOutbox obj) Remove the EventOutboxServiceConnection object.void
_ErrorLog.setEventOutbox
(EventOutbox eventOutbox) Set the EventOutbox. -
Uses of EventOutbox in com.avoka.fc.core.outbox
Modifier and TypeMethodDescriptionIOutboxProcessor.raiseEvent
(ServiceConnection serviceConnection, String eventTopic, String payload, String eventDetails, EventOutbox.EntityType entityType, String entityId, UserAccount user) Create a new EventOutbox entity.OutboxProcessor.raiseEvent
(ServiceConnection serviceConnection, String eventTopic, String payload, String eventDetails, EventOutbox.EntityType entityType, String entityId, UserAccount user) Create a new EventOutbox entity.Modifier and TypeMethodDescriptionvoid
OutboxProcessor.sendEventToQueue
(EventOutbox eventOutbox) Send eventId to OutBoxThread BlockingQueue -
Uses of EventOutbox in com.avoka.fc.core.service
Modifier and TypeMethodDescriptionEventOutboxService.createOutboxEvent
(ServiceConnection serviceConnection, String eventTopic, String payload, String eventDetails, EventOutbox.EntityType entityType, String entityId, UserAccount user) create a new EventOutbox entity.Modifier and TypeMethodDescriptionboolean
EventOutboxService.updateEventOutboxToDelivered
(EventOutbox eventOutbox, String response) update an eventOutbox with delivered status.boolean
EventOutboxService.updateEventOutboxToFailedBeforeProcessing
(EventOutbox eventOutbox) Update an eventOutbox with before failed processing statusboolean
EventOutboxService.updateEventOutboxToFailedProcessing
(EventOutbox eventOutbox, ErrorLog errorLog) Update an eventOutbox with failed processing status.boolean
EventOutboxService.updateEventOutboxToInProgress
(EventOutbox eventOutbox) Update an eventOutbox with in progress status.boolean
EventOutboxService.updateEventOutboxToInQueue
(EventOutbox eventOutbox) Update an eventOutbox with in queue processing status. -
Uses of EventOutbox in com.avoka.fc.core.service.test
Modifier and TypeMethodDescriptionMockEntityService.createEventOutboxByType
(ServiceConnection serviceConnection, UserAccount userAccount, String entityType) Create a mock Event Outbox.MockEntityService.createSubmissionEventOutbox
(ServiceConnection serviceConnection, UserAccount userAccount) Create a mock EventOutbox.