mirror of
https://github.com/sogou/workflow.git
synced 2026-02-08 01:33:17 +08:00
optimize tutorial-11
This commit is contained in:
@@ -26,7 +26,7 @@ using namespace protocol;
|
||||
|
||||
static WFFacilities::WaitGroup wait_group(1);
|
||||
|
||||
void go_func(size_t *size1, size_t *size2)
|
||||
void go_func(const size_t *size1, const size_t *size2)
|
||||
{
|
||||
printf("page1 size = %zu, page2 size = %zu\n", *size1, *size2);
|
||||
}
|
||||
@@ -45,7 +45,7 @@ void http_callback(WFHttpTask *task)
|
||||
#define REDIRECT_MAX 3
|
||||
#define RETRY_MAX 1
|
||||
|
||||
int main(void)
|
||||
int main()
|
||||
{
|
||||
WFTimerTask *timer;
|
||||
WFHttpTask *http_task1;
|
||||
@@ -70,7 +70,7 @@ int main(void)
|
||||
http_callback);
|
||||
http_task2->user_data = &size2;
|
||||
|
||||
/* go task will print the http pages's size */
|
||||
/* go task will print the http pages size */
|
||||
go_task = WFTaskFactory::create_go_task("go", go_func, &size1, &size2);
|
||||
|
||||
/* Create a graph. Graph is also a kind of task */
|
||||
|
||||
Reference in New Issue
Block a user