Skip to content

})} },System.Nullable{System.DateTimeOffset})} )} },System.Type)} },System.Type,System.Nullable{System.DateTimeOffset})} )}

IBlobCache.Insert(IEnumerable>) method

Defined in

Type: IBlobCache Namespace: Akavache.Reactive Assembly: Akavache.Reactive.dll

Applies to

net10.0, net10.0-maccatalyst26.0, net10.0-desktop1.0, net10.0-browserwasm1.0, net10.0-tvos26.0, net10.0-windows10.0.19041, net10.0-macos26.0, net10.0-ios26.0, net10.0-android36.0, net9.0, net9.0-tvos18.0, net9.0-macos15.0, net9.0-maccatalyst18.0, net9.0-windows10.0.19041, net9.0-ios18.0, net9.0-desktop1.0, net8.0, net8.0-windows10.0.19041, net8.0-ios18.0, net8.0-maccatalyst18.0, net8.0-macos15.0, net8.0-tvos18.0, net8.0-ios17.5, net8.0-maccatalyst17.5, net8.0-macos14.5, netstandard2.1, net481, net462, net471

Overloads

  • 1. IObservable<Unit> Insert(IEnumerable<KeyValuePair<string, byte[]>> keyValuePairs)
  • 2. IObservable<Unit> Insert(IEnumerable<KeyValuePair<string, byte[]>> keyValuePairs, DateTimeOffset? absoluteExpiration)
  • 3. IObservable<Unit> Insert(string key, byte[] data)
  • 4. IObservable<Unit> Insert(string key, byte[] data, DateTimeOffset? absoluteExpiration)
  • 5. IObservable<Unit> Insert(IEnumerable<KeyValuePair<string, byte[]>> keyValuePairs, Type type)
  • 6. IObservable<Unit> Insert(IEnumerable<KeyValuePair<string, byte[]>> keyValuePairs, Type type, DateTimeOffset? absoluteExpiration)
  • 7. IObservable<Unit> Insert(string key, byte[] data, Type type)
  • 8. IObservable<Unit> Insert(string key, byte[] data, Type type, DateTimeOffset? absoluteExpiration)

1. Overload

IObservable<Unit> Insert(IEnumerable<KeyValuePair<string, byte[]>> keyValuePairs)

Summary: Inserts the specified key/value pairs into the blob.

Parameters

NameTypeDescription
keyValuePairsIEnumerable>The key/value to insert.

Returns: IObservable -- A observable which signals when complete.

2. Overload

IObservable<Unit> Insert(IEnumerable<KeyValuePair<string, byte[]>> keyValuePairs, DateTimeOffset? absoluteExpiration)

Summary: Inserts the specified key/value pairs into the blob.

Parameters

NameTypeDescription
keyValuePairsIEnumerable>The key/value to insert.
absoluteExpirationDateTimeOffset?An optional expiration date.

Returns: IObservable -- A observable which signals when complete.

3. Overload

IObservable<Unit> Insert(string key, byte[] data)

Summary: Insert a blob into the cache with the specified key and expiration date.

Parameters

NameTypeDescription
keystringThe key to use for the data.
databyte[]The data to save in the cache.

Returns: IObservable -- A signal to indicate when the key has been inserted.

4. Overload

IObservable<Unit> Insert(string key, byte[] data, DateTimeOffset? absoluteExpiration)

Summary: Insert a blob into the cache with the specified key and expiration date.

Parameters

NameTypeDescription
keystringThe key to use for the data.
databyte[]The data to save in the cache.
absoluteExpirationDateTimeOffset?An optional expiration date. After the specified date, the key-value pair should be removed.

Returns: IObservable -- A signal to indicate when the key has been inserted.

5. Overload

IObservable<Unit> Insert(IEnumerable<KeyValuePair<string, byte[]>> keyValuePairs, Type type)

Summary: Inserts the specified key/value pairs into the blob.

Parameters

NameTypeDescription
keyValuePairsIEnumerable>The key/value to insert.
typeTypeThe type.

Returns: IObservable -- A observable which signals when complete.

6. Overload

IObservable<Unit> Insert(IEnumerable<KeyValuePair<string, byte[]>> keyValuePairs, Type type, DateTimeOffset? absoluteExpiration)

Summary: Inserts the specified key/value pairs into the blob.

Parameters

NameTypeDescription
keyValuePairsIEnumerable>The key/value to insert.
typeTypeThe type.
absoluteExpirationDateTimeOffset?An optional expiration date.

Returns: IObservable -- A observable which signals when complete.

7. Overload

IObservable<Unit> Insert(string key, byte[] data, Type type)

Summary: Insert a blob into the cache with the specified key and expiration date.

Parameters

NameTypeDescription
keystringThe key to use for the data.
databyte[]The data to save in the cache.
typeTypeThe type.

Returns: IObservable -- A signal to indicate when the key has been inserted.

8. Overload

IObservable<Unit> Insert(string key, byte[] data, Type type, DateTimeOffset? absoluteExpiration)

Summary: Insert a blob into the cache with the specified key and expiration date.

Parameters

NameTypeDescription
keystringThe key to use for the data.
databyte[]The data to save in the cache.
typeTypeThe type.
absoluteExpirationDateTimeOffset?An optional expiration date. After the specified date, the key-value pair should be removed.

Returns: IObservable -- A signal to indicate when the key has been inserted.