-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53a33ef
commit dfee5c0
Showing
19 changed files
with
241 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...oid-sdk/src/main/java/io/embrace/android/embracesdk/comms/delivery/NoopDeliveryService.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package io.embrace.android.embracesdk.comms.delivery | ||
|
||
import io.embrace.android.embracesdk.internal.payload.Envelope | ||
import io.embrace.android.embracesdk.internal.payload.LogPayload | ||
import io.embrace.android.embracesdk.internal.utils.Provider | ||
import io.embrace.android.embracesdk.ndk.NativeCrashService | ||
import io.embrace.android.embracesdk.payload.EventMessage | ||
import io.embrace.android.embracesdk.payload.NetworkEvent | ||
import io.embrace.android.embracesdk.payload.SessionMessage | ||
import io.embrace.android.embracesdk.session.id.SessionIdTracker | ||
import io.embrace.android.embracesdk.session.orchestrator.SessionSnapshotType | ||
|
||
internal class NoopDeliveryService : DeliveryService { | ||
Check warning on line 13 in embrace-android-sdk/src/main/java/io/embrace/android/embracesdk/comms/delivery/NoopDeliveryService.kt Codecov / codecov/patchembrace-android-sdk/src/main/java/io/embrace/android/embracesdk/comms/delivery/NoopDeliveryService.kt#L13
|
||
|
||
override fun sendSession(sessionMessage: SessionMessage, snapshotType: SessionSnapshotType) { | ||
} | ||
|
||
override fun sendCachedSessions( | ||
nativeCrashServiceProvider: Provider<NativeCrashService?>, | ||
sessionIdTracker: SessionIdTracker | ||
) { | ||
} | ||
|
||
override fun sendLog(eventMessage: EventMessage) { | ||
} | ||
|
||
override fun sendLogs(logEnvelope: Envelope<LogPayload>) { | ||
} | ||
|
||
override fun saveLogs(logEnvelope: Envelope<LogPayload>) { | ||
} | ||
|
||
override fun sendNetworkCall(networkEvent: NetworkEvent) { | ||
} | ||
|
||
override fun sendCrash(crash: EventMessage, processTerminating: Boolean) { | ||
} | ||
|
||
override fun sendMoment(eventMessage: EventMessage) { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.