toggle menu
Transactional Outbox
jvm
switch theme
search in API
spring
/
io.github.bluegroundltd.springoutbox.database
/
OutboxItemEntity
Outbox
Item
Entity
@
Entity
data
class
OutboxItemEntity
(
val
id
:
Long
?
,
var
type
:
String
,
var
status
:
OutboxStatus
,
val
payload
:
String
,
val
groupId
:
String
?
,
var
retries
:
Long
,
var
nextRun
:
Instant
,
var
lastExecution
:
Instant
?
,
var
rerunAfter
:
Instant
?
,
var
deleteAfter
:
Instant
?
)
:
UpdatableEntity
<
Long
>
Members
Constructors
Outbox
Item
Entity
Link copied to clipboard
constructor
(
id
:
Long
?
,
type
:
String
,
status
:
OutboxStatus
,
payload
:
String
,
groupId
:
String
?
,
retries
:
Long
,
nextRun
:
Instant
,
lastExecution
:
Instant
?
,
rerunAfter
:
Instant
?
,
deleteAfter
:
Instant
?
)
Properties
created
At
Link copied to clipboard
var
createdAt
:
Instant
?
created
By
Link copied to clipboard
var
createdBy
:
Long
?
delete
After
Link copied to clipboard
var
deleteAfter
:
Instant
?
group
Id
Link copied to clipboard
val
groupId
:
String
?
id
Link copied to clipboard
val
id
:
Long
?
last
Execution
Link copied to clipboard
var
lastExecution
:
Instant
?
next
Run
Link copied to clipboard
var
nextRun
:
Instant
object
Version
Link copied to clipboard
var
objectVersion
:
Long
?
payload
Link copied to clipboard
val
payload
:
String
rerun
After
Link copied to clipboard
var
rerunAfter
:
Instant
?
retries
Link copied to clipboard
var
retries
:
Long
status
Link copied to clipboard
var
status
:
OutboxStatus
type
Link copied to clipboard
var
type
:
String
updated
At
Link copied to clipboard
var
updatedAt
:
Instant
?
updated
By
Link copied to clipboard
var
updatedBy
:
Long
?