2024-07-26 06:39:27 +00:00
|
|
|
|
namespace CodexPlugin.Hooks
|
|
|
|
|
{
|
|
|
|
|
public interface ICodexNodeHooks
|
|
|
|
|
{
|
2024-07-29 08:16:37 +00:00
|
|
|
|
void OnNodeStarting(DateTime startUtc, string image);
|
|
|
|
|
void OnNodeStarted(string peerId);
|
2024-07-26 06:39:27 +00:00
|
|
|
|
void OnNodeStopping();
|
|
|
|
|
void OnFileUploaded(ContentId cid);
|
|
|
|
|
void OnFileDownloaded(ContentId cid);
|
|
|
|
|
}
|
|
|
|
|
}
|