Function juniper_warp::make_graphql_filter_with_thread_pool[][src]

pub fn make_graphql_filter_with_thread_pool<Query, Mutation, Context>(
    schema: RootNode<'static, Query, Mutation>,
    context_extractor: BoxedFilter<(Context,)>,
    thread_pool: CpuPool
) -> BoxedFilter<(Response<Vec<u8>>,)> where
    Context: Send + 'static,
    Query: GraphQLType<Context = Context, TypeInfo = ()> + Send + Sync + 'static,
    Mutation: GraphQLType<Context = Context, TypeInfo = ()> + Send + Sync + 'static, 

Same as make_graphql_filter, but use the provided CpuPool instead.