Uses of Class
com.avoka.fc.core.entity.EventOutbox
Package
Description
Provides the Data Access Objects used by SmartForm Manager.
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.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.createSubmissionEventOutbox
(ServiceConnection serviceConnection, UserAccount userAccount) Create a mock EventOutbox.