All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.yiuman.citrus.system.cache.UserOnlineCache Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
package com.github.yiuman.citrus.system.cache;

import com.github.yiuman.citrus.support.cache.AbstractEnvironmentCache;
import com.github.yiuman.citrus.system.dto.UserOnlineInfo;
import org.springframework.stereotype.Component;

/**
 * 在线用户缓存
 *
 * @author yiuman
 * @date 2020/6/15
 */
@Component
public class UserOnlineCache extends AbstractEnvironmentCache {

    private final static String USER_ONLINE_CACHE = "userOnlineCache";

    public UserOnlineCache() {
        super(USER_ONLINE_CACHE);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy