Documentation ¶
Index ¶
- type AppEnvironment
- type AppEnvironmentCapabilitySet
- type BaseEnvironment
- type BaseEnvironmentCapabilitySet
- type ConnectionCapabilitySet
- type ConnectionEnvironment
- type ConnectionLogCapabilitySet
- type FeaturesLookupCapabilitySet
- type FileSystemCapabilitySet
- type InstanceNetworkCapabilitySet
- type LogCapabilitySet
- type ProxyEnvironment
- type ProxyEnvironmentCapabilitySet
- type SystemNetworkCapabilitySet
- type TransportEnvironment
- type TransportEnvironmentCapacitySet
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppEnvironment ¶
type AppEnvironment interface { AppEnvironmentCapabilitySet NarrowScope(key []byte) (AppEnvironment, error) // contains filtered or unexported methods }
type AppEnvironmentCapabilitySet ¶
type AppEnvironmentCapabilitySet interface { BaseEnvironmentCapabilitySet SystemNetworkCapabilitySet InstanceNetworkCapabilitySet FileSystemCapabilitySet PersistentStorage() storage.ScopedPersistentStorage TransientStorage() storage.ScopedTransientStorage }
type BaseEnvironment ¶
type BaseEnvironment interface { BaseEnvironmentCapabilitySet // contains filtered or unexported methods }
type BaseEnvironmentCapabilitySet ¶
type BaseEnvironmentCapabilitySet interface { FeaturesLookupCapabilitySet LogCapabilitySet }
type ConnectionCapabilitySet ¶
type ConnectionCapabilitySet interface { ConnectionLogCapabilitySet }
type ConnectionEnvironment ¶
type ConnectionEnvironment interface { ConnectionCapabilitySet // contains filtered or unexported methods }
type FeaturesLookupCapabilitySet ¶
type FeaturesLookupCapabilitySet interface {
RequireFeatures(callback interface{}) error
}
type FileSystemCapabilitySet ¶
type FileSystemCapabilitySet interface { filesystemcap.FileSystemCapabilitySet }
type LogCapabilitySet ¶
type ProxyEnvironment ¶
type ProxyEnvironment interface { ProxyEnvironmentCapabilitySet NarrowScope(key []byte) (ProxyEnvironment, error) NarrowScopeToTransport(key []byte) (TransportEnvironment, error) // contains filtered or unexported methods }
type ProxyEnvironmentCapabilitySet ¶
type ProxyEnvironmentCapabilitySet interface { BaseEnvironmentCapabilitySet InstanceNetworkCapabilitySet TransientStorage() storage.ScopedTransientStorage }
type SystemNetworkCapabilitySet ¶
type SystemNetworkCapabilitySet interface { Dialer() internet.SystemDialer Listener() internet.SystemListener }
type TransportEnvironment ¶
type TransportEnvironment interface { TransportEnvironmentCapacitySet NarrowScope(key []byte) (TransportEnvironment, error) // contains filtered or unexported methods }
type TransportEnvironmentCapacitySet ¶
type TransportEnvironmentCapacitySet interface { BaseEnvironmentCapabilitySet SystemNetworkCapabilitySet InstanceNetworkCapabilitySet TransientStorage() storage.ScopedTransientStorage }
Click to show internal directories.
Click to hide internal directories.