Mercury-IM/domain/src/main/java/org/mercury_im/core/util/ThreadUtils.java

17 lines
383 B
Java

package org.mercury_im.core.util;
/**
* Name constants used by dagger in combination with the @Named annotation.
*/
public class ThreadUtils {
/**
* Name for the database / io thread.
*/
public static final String SCHEDULER_IO = "DatabaseThread";
/**
* Name for the UI / main thread.
*/
public static final String SCHEDULER_UI = "UIThread";
}