feat(transport): add IBundleExporter / IBundleImporter interfaces
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using ScadaLink.Commons.Types.Transport;
|
||||
|
||||
namespace ScadaLink.Commons.Interfaces.Transport;
|
||||
|
||||
public interface IBundleSessionStore
|
||||
{
|
||||
BundleSession Open(BundleSession session);
|
||||
BundleSession? Get(Guid sessionId);
|
||||
void Remove(Guid sessionId);
|
||||
void EvictExpired();
|
||||
}
|
||||
Reference in New Issue
Block a user