Hunter0x7c7
2022-08-11 b8230139fb40edea387617b6accd8371e37eda58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package outbound
 
import (
    "context"
 
    "github.com/v2fly/v2ray-core/v5/common"
    "github.com/v2fly/v2ray-core/v5/features"
    "github.com/v2fly/v2ray-core/v5/transport"
)
 
// Handler is the interface for handlers that process outbound connections.
//
// v2ray:api:stable
type Handler interface {
    common.Runnable
    Tag() string
    Dispatch(ctx context.Context, link *transport.Link)
}
 
type HandlerSelector interface {
    Select([]string) []string
}
 
// Manager is a feature that manages outbound.Handlers.
//
// v2ray:api:stable
type Manager interface {
    features.Feature
    // GetHandler returns an outbound.Handler for the given tag.
    GetHandler(tag string) Handler
    // GetDefaultHandler returns the default outbound.Handler. It is usually the first outbound.Handler specified in the configuration.
    GetDefaultHandler() Handler
    // AddHandler adds a handler into this outbound.Manager.
    AddHandler(ctx context.Context, handler Handler) error
 
    // RemoveHandler removes a handler from outbound.Manager.
    RemoveHandler(ctx context.Context, tag string) error
}
 
// ManagerType returns the type of Manager interface. Can be used to implement common.HasType.
//
// v2ray:api:stable
func ManagerType() interface{} {
    return (*Manager)(nil)
}