Click or drag to resize

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

Value

Type: SystemEventHandlerMemoryStorageFullEventArgs

Implements

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