use of org.apache.druid.query.context.ConcurrentResponseContext in project druid by druid-io.
the class DirectDruidClient method makeResponseContextForQuery.
public static ConcurrentResponseContext makeResponseContextForQuery() {
final ConcurrentResponseContext responseContext = ConcurrentResponseContext.createEmpty();
responseContext.initialize();
return responseContext;
}
Aggregations