| InputChannelMemoryStorageFull Event |
Occurs when the input channel stalls waiting for space to become available in the memory storage.
Namespace:
Ookii.Jumbo.Jet.Channels
Assembly:
Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax public 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
Type:
SystemEventHandlerMemoryStorageFullEventArgsImplements
IInputChannelMemoryStorageFullRemarks
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