-
Notifications
You must be signed in to change notification settings - Fork 379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support subclassing ACE_Connector #2327
Conversation
WalkthroughThe update modifies the ACE_Connector class in the ACE/ace/Connector.h file by moving the variable declaration of "int flags_". Previously located in the private section, this variable is now declared in the protected section, allowing derived classes direct access. The associated comments remain unchanged, maintaining the variable's role in non-blocking I/O initialization. Changes
Poem
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
ACE/ace/Connector.h (1)
284-292
: LGTM! Good architectural improvement.Moving the
flags_
member to the protected section is a well-thought-out change that improves the extensibility of theACE_Connector
class. This modification allows derived classes to access and customize the SVC_HANDLER initialization flags while maintaining proper encapsulation.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
ACE/ace/Connector.h
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (20)
- GitHub Check: ubuntu-20.04 g++-10 ACE for TAO
- GitHub Check: ubuntu-20.04 clang++-11
- GitHub Check: Codacy Static Code Analysis
- GitHub Check: ubuntu-20.04 clang++-10
- GitHub Check: VS2022Release64
- GitHub Check: VS2022Debug64
- GitHub Check: VS2022WChar
- GitHub Check: VS2019Debug64Cxx20
- GitHub Check: VS2019Debug64Cxx17
- GitHub Check: VS2019Release32
- GitHub Check: VS2019Debug32
- GitHub Check: VS2019Release64
- GitHub Check: VS2019Debug64
- GitHub Check: VS2019WChar
- GitHub Check: MINGW64-gcc
- GitHub Check: windows-2019 vs2019
- GitHub Check: macos-14-C++
- GitHub Check: macos-13-C++
- GitHub Check: ubuntu-20.04 g++-10
- GitHub Check: alpine-3.18
make "flags_" member protected so it can be reached from children
Summary by CodeRabbit