diff --git a/Doc/Manual/Contents.html b/Doc/Manual/Contents.html index 4af66298c..bdb3aa9f5 100644 --- a/Doc/Manual/Contents.html +++ b/Doc/Manual/Contents.html @@ -912,6 +912,7 @@
  • Overhead and code bloat
  • Simple directors example
  • Director threading issues +
  • Director performance tuning
  • Accessing protected members
  • Common customization features diff --git a/Doc/Manual/Java.html b/Doc/Manual/Java.html index cfee64fa0..ed99549b0 100644 --- a/Doc/Manual/Java.html +++ b/Doc/Manual/Java.html @@ -3528,6 +3528,7 @@ Macros can be defined on the commandline when compiling your C++ code, or altern

    24.5.6 Director performance tuning

    +

    When a new instance of a director (or subclass) is created in Java, the C++ side of the director performs a runtime check per director method to determine if that particular method is overridden in Java or if it should invoke the C++ base implementation directly. Although this makes initialization slightly more expensive, it is generally a good overall tradeoff.