Skip to content
Gropius
Search
K
Main Navigation
Guide
Kotlin API
GraphQL
Login service
GitHub
Menu
Return to top
sync-jira
/
gropius.sync.jira
/
SyncStatusRepository
SyncStatusRepository
@
Repository
interface
SyncStatusRepository
:
ReactiveMongoRepository
<
SyncStatus
,
ObjectId
>
Repository for accessing the sync status
Inheritors
SyncStatusService
Members
Functions
count
Link copied to clipboard
abstract
fun
<
S
:
SyncStatus
?
>
count
(
example
:
Example
<
S
?
>
?
)
:
Mono
<
Long
?
>
?
abstract
fun
count
(
)
:
Mono
<
Long
?
>
?
delete
Link copied to clipboard
abstract
fun
delete
(
entity
:
SyncStatus
?
)
:
Mono
<
Void
?
>
?
delete
All
Link copied to clipboard
abstract
fun
deleteAll
(
)
:
Mono
<
Void
?
>
?
abstract
fun
deleteAll
(
entities
:
Iterable
<
out
SyncStatus
?
>
?
)
:
Mono
<
Void
?
>
?
abstract
fun
deleteAll
(
entityStream
:
Publisher
<
out
SyncStatus
?
>
?
)
:
Mono
<
Void
?
>
?
delete
All
By
Id
Link copied to clipboard
abstract
fun
deleteAllById
(
ids
:
Iterable
<
out
ObjectId
?
>
?
)
:
Mono
<
Void
?
>
?
delete
By
Id
Link copied to clipboard
abstract
fun
deleteById
(
id
:
ObjectId
?
)
:
Mono
<
Void
?
>
?
abstract
fun
deleteById
(
id
:
Publisher
<
ObjectId
?
>
?
)
:
Mono
<
Void
?
>
?
exists
Link copied to clipboard
abstract
fun
<
S
:
SyncStatus
?
>
exists
(
example
:
Example
<
S
?
>
?
)
:
Mono
<
Boolean
?
>
?
exists
By
Id
Link copied to clipboard
abstract
fun
existsById
(
id
:
ObjectId
?
)
:
Mono
<
Boolean
?
>
?
abstract
fun
existsById
(
id
:
Publisher
<
ObjectId
?
>
?
)
:
Mono
<
Boolean
?
>
?
find
All
Link copied to clipboard
abstract
fun
<
S
:
SyncStatus
?
>
findAll
(
example
:
Example
<
S
?
>
?
)
:
Flux
<
S
?
>
?
abstract
fun
<
S
:
SyncStatus
?
>
findAll
(
example
:
Example
<
S
?
>
?
,
sort
:
Sort
?
)
:
Flux
<
S
?
>
?
abstract
fun
findAll
(
)
:
Flux
<
SyncStatus
?
>
?
abstract
fun
findAll
(
sort
:
Sort
?
)
:
Flux
<
SyncStatus
?
>
?
find
All
By
Id
Link copied to clipboard
abstract
fun
findAllById
(
ids
:
Iterable
<
ObjectId
?
>
?
)
:
Flux
<
SyncStatus
?
>
?
abstract
fun
findAllById
(
idStream
:
Publisher
<
ObjectId
?
>
?
)
:
Flux
<
SyncStatus
?
>
?
find
By
Link copied to clipboard
abstract
fun
<
S
:
SyncStatus
?
,
R
:
Any
?
,
P
:
Publisher
<
R
?
>
?
>
findBy
(
example
:
Example
<
S
?
>
?
,
queryFunction
:
Function
<
FluentQuery.ReactiveFluentQuery
<
S
?
>
?
,
P
?
>
?
)
:
P
?
find
By
Id
Link copied to clipboard
abstract
fun
findById
(
id
:
ObjectId
?
)
:
Mono
<
SyncStatus
?
>
?
abstract
fun
findById
(
id
:
Publisher
<
ObjectId
?
>
?
)
:
Mono
<
SyncStatus
?
>
?
find
By
Ims
Project
Link copied to clipboard
abstract
suspend
fun
findByImsProject
(
imsProject
:
String
)
:
SyncStatus
?
Find using the IMSProject ID
find
One
Link copied to clipboard
abstract
fun
<
S
:
SyncStatus
?
>
findOne
(
example
:
Example
<
S
?
>
?
)
:
Mono
<
S
?
>
?
insert
Link copied to clipboard
abstract
fun
<
S
:
SyncStatus
?
>
insert
(
entity
:
S
?
)
:
Mono
<
S
?
>
?
abstract
fun
<
S
:
SyncStatus
?
>
insert
(
entities
:
Iterable
<
S
?
>
?
)
:
Flux
<
S
?
>
?
abstract
fun
<
S
:
SyncStatus
?
>
insert
(
entities
:
Publisher
<
S
?
>
?
)
:
Flux
<
S
?
>
?
save
Link copied to clipboard
abstract
fun
<
S
:
SyncStatus
?
>
save
(
entity
:
S
?
)
:
Mono
<
S
?
>
?
save
All
Link copied to clipboard
abstract
fun
<
S
:
SyncStatus
?
>
saveAll
(
entities
:
Iterable
<
S
?
>
?
)
:
Flux
<
S
?
>
?
abstract
fun
<
S
:
SyncStatus
?
>
saveAll
(
entityStream
:
Publisher
<
S
?
>
?
)
:
Flux
<
S
?
>
?