# InvokablePool Methods

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.serialization/orleans.serialization.invocation.invokablepool/)

## Get {#get-1-db803fe0}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.serialization/orleans.serialization.invocation.invokablepool/methods/get-1-db803fe0/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Serialization/Invocation/Pools/InvokablePool.cs#L13)

```csharp
public static T Get<T>()
```

Gets a value from the pool.

### Returns

A value from the pool.

## Return(T) {#return-1-t-13a4589b}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.serialization/orleans.serialization.invocation.invokablepool/methods/return-1-t-13a4589b/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Serialization/Invocation/Pools/InvokablePool.cs#L20)

```csharp
public static void Return<T>(T obj)
```

Returns a value to the pool.

### Parameters

- `obj` (`T`): The value to return.
