Knetik.StoreQuery.HandleResponse C# (CSharp) Method

HandleResponse() private method

private HandleResponse ( Action cb ) : Action
cb Action
return Action
        private Action<KnetikApiResponse> HandleResponse(Action<KnetikResult<StoreQuery>> cb)
        {
            return (KnetikApiResponse res) => {
                cb(OnLoad(res));
            };
        }