push_sorted


Description:

[ Version ( since = "2.10" ) ]
public void push_sorted (owned G data, CompareDataFunc<G> func)

Inserts data into this using func to determine the new position.

This function requires that the this is sorted before pushing on new elements, see sort.

This function will lock this before it sorts the queue and unlock it when it is finished.

For an example of func see sort.

Parameters:

this

a AsyncQueue

data

the data to push into the this

func

the CompareDataFunc is used to sort this

user_data

user data passed to func.