Meshtastic App
Toggle table of contents
androidJvm
Platform filter
androidJvm
Switch theme
Search in API
Meshtastic App
Meshtastic App
/
com.geeksville.mesh.database.dao
/
MeshLogDao
Mesh
Log
Dao
interface
MeshLogDao
Members
Functions
delete
All
Link copied to clipboard
abstract
fun
deleteAll
(
)
delete
Log
Link copied to clipboard
abstract
fun
deleteLog
(
uuid
:
String
)
delete
Logs
Link copied to clipboard
abstract
fun
deleteLogs
(
fromNum
:
Int
,
portNum
:
Int
)
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
fun
insert
(
log
:
MeshLog
)