| 54 | template <typename T, |
| 55 | typename = typename TypeTraits::EnableIf<TypeTraits::IsBaseOf<HttpConnection, T>::value>::type> |
| 56 | Result init(Span<T> clients) |
| 57 | { |
| 58 | return initInternal({clients.data(), clients.sizeInElements(), sizeof(T)}); |
| 59 | } |
| 60 | |
| 61 | template <typename T, |
| 62 | typename = typename TypeTraits::EnableIf<TypeTraits::IsBaseOf<HttpConnection, T>::value>::type> |