pub fn new_partial<RuntimeApi, Customizations>(
    config: &mut Configuration,
    rpc_config: &RpcConfig,
    dev_service: bool,
    legacy_block_import_strategy: bool
) -> Result<PartialComponents<TFullClient<Block, RuntimeApi, WasmExecutor<HostFunctions>>, TFullBackend<Block>, Option<LongestChain<TFullBackend<Block>, Block>>, DefaultImportQueue<Block>, FullPool<Block, TFullClient<Block, RuntimeApi, WasmExecutor<HostFunctions>>>, (BlockImportPipeline<FrontierBlockImport<Block, Arc<TFullClient<Block, RuntimeApi, WasmExecutor<HostFunctions>>>, TFullClient<Block, RuntimeApi, WasmExecutor<HostFunctions>>>, ParachainBlockImport<Block, FrontierBlockImport<Block, Arc<TFullClient<Block, RuntimeApi, WasmExecutor<HostFunctions>>>, TFullClient<Block, RuntimeApi, WasmExecutor<HostFunctions>>>, TFullBackend<Block>>>, Option<FilterPool>, Option<Telemetry>, Option<TelemetryWorkerHandle>, Arc<Backend<Block, TFullClient<Block, RuntimeApi, WasmExecutor<HostFunctions>>>>, FeeHistoryCache)>, Error>
where RuntimeApi: ConstructRuntimeApi<Block, TFullClient<Block, RuntimeApi, WasmExecutor<HostFunctions>>> + Send + Sync + 'static, RuntimeApi::RuntimeApi: RuntimeApiCollection, Customizations: ClientCustomizations + 'static,
Expand description

Builds the PartialComponents for a parachain or development service

Use this function if you don’t actually need the full service, but just the partial in order to be able to perform chain operations.