im implementing a github commit on my repo but i see a line and i dont understeand what it means, here is the line:
threadGroup.create_thread(boost::bind(&BeeKeeper, boost::cref(chainparams)));
i understeand the threadGroup, i know what it its and what its for, i have a function called BeeKeeper() so i guess that is calling that function but i dont get the boost::cref, i dont have a class named chainparams i just have a file called chainparams.h is this just a tag to create the thread with that name or what its for?
Thanks.