 | InputChannelMemoryStorageFull Event |
Occurs when the input channel stalls waiting for space to become available in the memory storage.
Namespace: Ookii.Jumbo.Jet.ChannelsAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic event EventHandler<MemoryStorageFullEventArgs> MemoryStorageFull
Public Event MemoryStorageFull As EventHandler(Of MemoryStorageFullEventArgs)
public:
virtual event EventHandler<MemoryStorageFullEventArgs^>^ MemoryStorageFull {
void add (EventHandler<MemoryStorageFullEventArgs^>^ value);
void remove (EventHandler<MemoryStorageFullEventArgs^>^ value);
}
abstract MemoryStorageFull : IEvent<EventHandler<MemoryStorageFullEventArgs>,
MemoryStorageFullEventArgs>
override MemoryStorageFull : IEvent<EventHandler<MemoryStorageFullEventArgs>,
MemoryStorageFullEventArgs>
Value
EventHandlerMemoryStorageFullEventArgsImplements
IInputChannelMemoryStorageFull
Remarks
If the channel consumer (e.g. a MultiInputRecordReaderT) can free up the required amount of space,
set the CancelWaiting property to so the memory
storage manager will continue waiting for the request.
If the CancelWaiting property is left at its default value of ,
the memory storage manager will immediately deny the request so the channel will store the input on disk instead.
See Also