Uses of Class
com.avoka.fc.core.entity.EventOutbox
Packages that use 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
Methods in com.avoka.fc.core.dao that return EventOutboxModifier and TypeMethodDescriptionEventOutboxDao.getEventOutboxForId
(Long id) Return the EventOutbox entity for the given EventOutbox id.Methods in com.avoka.fc.core.dao that return types with arguments of type EventOutboxModifier 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
Fields in com.avoka.fc.core.entity.auto with type parameters of type EventOutboxModifier 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.Methods in com.avoka.fc.core.entity.auto that return EventOutboxMethods in com.avoka.fc.core.entity.auto that return types with arguments of type EventOutboxModifier and TypeMethodDescription_UserAccount.getEventOutbox()
Return the EventOutbox._ServiceConnection.getEventOutboxServiceConnection()
Return the EventOutboxServiceConnection.Methods in com.avoka.fc.core.entity.auto with parameters of type EventOutboxModifier 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
Methods in com.avoka.fc.core.outbox that return EventOutboxModifier 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.Methods in com.avoka.fc.core.outbox with parameters of type EventOutboxModifier and TypeMethodDescriptionvoid
OutboxProcessor.sendEventToQueue
(EventOutbox eventOutbox) Send eventId to OutBoxThread BlockingQueue -
Uses of EventOutbox in com.avoka.fc.core.service
Methods in com.avoka.fc.core.service that return EventOutboxModifier and TypeMethodDescriptionEventOutboxService.createOutboxEvent
(ServiceConnection serviceConnection, String eventTopic, String payload, String eventDetails, EventOutbox.EntityType entityType, String entityId, UserAccount user) create a new EventOutbox entity.Methods in com.avoka.fc.core.service with parameters of type EventOutboxModifier 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
Methods in com.avoka.fc.core.service.test that return EventOutboxModifier and TypeMethodDescriptionMockEntityService.createEventOutboxByType
(ServiceConnection serviceConnection, UserAccount userAccount, String entityType) Create a mock Event Outbox.MockEntityService.createSubmissionEventOutbox
(ServiceConnection serviceConnection, UserAccount userAccount) Create a mock EventOutbox.