putEntries<T> method

Future<void> putEntries<T>(
  1. Map<Object, T> entries, {
  2. bool? allowConcurrency,
  3. bool? allowUnconfirmed,
  4. bool? noCache,
})

Implementation

Future<void> putEntries<T>(
  Map<Object, T> entries, {
  bool? allowConcurrency,
  bool? allowUnconfirmed,
  bool? noCache,
}) async {
  return _delegate.putEntries<T>(
    entries,
    interop.DurableObjectPutOptions()
      ..allowConcurrency = allowConcurrency
      ..allowUnconfirmed = allowUnconfirmed
      ..noCache = noCache,
  );
}