Meshtastic App
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
Meshtastic App
core-database
/
org.meshtastic.core.database.dao
/
MeshLogDao
Mesh
Log
Dao
interface
MeshLogDao
(
source
)
Members
Functions
delete
All
Link copied to clipboard
abstract
suspend
fun
deleteAll
(
)
delete
Log
Link copied to clipboard
abstract
suspend
fun
deleteLog
(
uuid
:
String
)
delete
Logs
Link copied to clipboard
abstract
suspend
fun
deleteLogs
(
fromNum
:
Int
,
portNum
:
Int
)
delete
Older
Than
Link copied to clipboard
abstract
suspend
fun
deleteOlderThan
(
cutoffTimestamp
:
Long
)
get
All
Logs
Link copied to clipboard
abstract
fun
getAllLogs
(
maxItem
:
Int
)
:
Flow
<
List
<
MeshLog
>
>
get
All
Logs
In
Receive
Order
Link copied to clipboard
abstract
fun
getAllLogsInReceiveOrder
(
maxItem
:
Int
)
:
Flow
<
List
<
MeshLog
>
>
get
Logs
From
Link copied to clipboard
abstract
fun
getLogsFrom
(
fromNum
:
Int
,
portNum
:
Int
,
maxItem
:
Int
)
:
Flow
<
List
<
MeshLog
>
>
Retrieves
MeshLog
s matching 'from_num' (nodeNum) and 'port_num' (PortNum).
insert
Link copied to clipboard
abstract
suspend
fun
insert
(
log
:
MeshLog
)