io.github.zhyshko.core.service.SessionService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BotIO Show documentation
Show all versions of BotIO Show documentation
A framework for easy Telegram Bot creation
package io.github.zhyshko.core.service;
import io.github.zhyshko.core.util.UpdateWrapper;
public interface SessionService {
Object get(UpdateWrapper wrapper, String key);
void set(UpdateWrapper wrapper, String key, Object value);
void delete(UpdateWrapper wrapper, String key);
void invalidate(UpdateWrapper wrapper);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy