Implements Impala::Util::ChannelListener. Reimplemented in Impala::Job::Server. Definition at line 92 of file ChannelServer.h. References AcceptDisconnect(), ILOG_INFO, mDoDynaPorts, mFirstDynaPort, mPortAllowWrite, and mPortAssignment. 00093 { 00094 if (mDoDynaPorts && port >= mFirstDynaPort) 00095 { 00096 if (mPortAssignment[port] != "") 00097 { 00098 AcceptDisconnect(port); 00099 mPortAssignment[port] = ""; 00100 mPortAllowWrite[port] = false; 00101 ILOG_INFO("Port " << port << " is free and available again"); 00102 } 00103 } 00104 }
Here is the call graph for this function:
|