request to abort comes from the proxy. This doesn't means immediate deallocation.
| 110 | |
| 111 | // request to abort comes from the proxy. This doesn't means immediate deallocation. |
| 112 | void CRefReadStream::Abort(CRefReadStreamProxy* pProxy) |
| 113 | { |
| 114 | if (m_setProxies.size() == 1) |
| 115 | { |
| 116 | // there's only one proxy that uses this object; so we can safely cancel io |
| 117 | // on this file |
| 118 | CancelIo (m_hFile); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | // Client (through the given Proxy) has requested priority rise |
| 123 | void CRefReadStream::OnRaisePriority (CRefReadStreamProxy* pProxy, unsigned nPriority) |
no test coverage detected