MCPcopy Create free account
hub / github.com/AI45Lab/Code / with_dlq

Method with_dlq

core/src/queue.rs:325–329  ·  view source on GitHub ↗

Enable dead letter queue with optional max size

(mut self, max_size: Option<usize>)

Source from the content-addressed store, hash-verified

323
324 /// Enable dead letter queue with optional max size
325 pub fn with_dlq(mut self, max_size: Option<usize>) -> Self {
326 self.enable_dlq = true;
327 self.dlq_max_size = max_size;
328 self
329 }
330
331 /// Enable metrics collection
332 pub fn with_metrics(mut self) -> Self {

Callers 5

build_queue_managerMethod · 0.80
enable_dlqMethod · 0.80
js_queue_config_to_rustFunction · 0.80

Calls

no outgoing calls