mirror of
https://github.com/status-im/whisper.git
synced 2025-01-20 23:59:21 +00:00
40 lines
1.6 KiB
Go
40 lines
1.6 KiB
Go
package whisperv6
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/p2p/enode"
|
|
)
|
|
|
|
// EventType used to define known envelope events.
|
|
type EventType string
|
|
|
|
const (
|
|
// EventEnvelopeSent fires when envelope was sent to a peer.
|
|
EventEnvelopeSent EventType = "envelope.sent"
|
|
// EventEnvelopeExpired fires when envelop expired
|
|
EventEnvelopeExpired EventType = "envelope.expired"
|
|
// EventBatchAcknowledged is sent when batch of envelopes was acknowleged by a peer.
|
|
EventBatchAcknowledged EventType = "batch.acknowleged"
|
|
// EventEnvelopeAvailable fires when envelop is available for filters
|
|
EventEnvelopeAvailable EventType = "envelope.available"
|
|
// EventMailServerRequestSent fires when such request is sent.
|
|
EventMailServerRequestSent EventType = "mailserver.request.sent"
|
|
// EventMailServerRequestCompleted fires after mailserver sends all the requested messages
|
|
EventMailServerRequestCompleted EventType = "mailserver.request.completed"
|
|
// EventMailServerRequestExpired fires after mailserver the request TTL ends.
|
|
// This event is independent and concurrent to EventMailServerRequestCompleted.
|
|
// Request should be considered as expired only if expiry event was received first.
|
|
EventMailServerRequestExpired EventType = "mailserver.request.expired"
|
|
// EventMailServerEnvelopeArchived fires after an envelope has been archived
|
|
EventMailServerEnvelopeArchived EventType = "mailserver.envelope.archived"
|
|
)
|
|
|
|
// EnvelopeEvent used for envelopes events.
|
|
type EnvelopeEvent struct {
|
|
Event EventType
|
|
Hash common.Hash
|
|
Batch common.Hash
|
|
Peer enode.ID
|
|
Data interface{}
|
|
}
|