ezralazuardy/orb

View on GitHub
orb/src/main/java/com/ezralazuardy/orb/OrbState.kt

Summary

Maintainability
A
0 mins
Test Coverage
/*
 * Created by Ezra Lazuardy on 5/6/20 8:23 AM
 * Copyright (c) 2020. All rights reserved.
 * Last modified 5/6/20 8:05 AM
 */

package com.ezralazuardy.orb

/**
 * OrbState is an enum class that hold some Orb network state properties
 */
enum class OrbState {
    UNKNOWN, CONNECTED, DISCONNECTED
}