2
votes
1answer
61 views
Lifetime management with Google Guice
Is there a recommended pattern for shutting down / closing objects created with Guice?
The lifecycle I'm aiming for is:
Prepare a Guice Module
Create an injector
Use the injecto …
4
votes
4answers
189 views
Should this C++ temporary binding to reference member be illegal?
Hello,
My question (which will follow after this, sorry about the long intro, the question is down there in bold) is originally inspired by Item 23 in Herb Sutters Exceptional C++ …
0
votes
4answers
143 views
Can I make a C# object’s lifetime depend on another object?
I have an object (Delegate) which needs to stay alive (not garbage collected) while another object (TargetObject) is alive. I want Delegate to be garbage collected when TargetObjec …
0
votes
1answer
34 views
What are the effects of failing to close/dispose Powershell Runspace objects before process termination?
Given an application that maintains a singleton instance of a Runspace object (from System.Management.Automation.Runspaces) for the lifetime of the application, what are the potent …
0
votes
1answer
69 views
Detecting when an NSView is dealloc’ed
Is there any way to detect when an NSView will be dealloc'ed?
The reason is, I have some simple delegates (such as an NSTextField delegate that handles -control:textView:doCommand …
11
votes
9answers
836 views
A Question On Smart Pointers and Their Inevitable Indeterminism
I've been extensively using smart pointers (boost::shared_ptr to be exact) in my projects for the last two years. I understand and appreciate their benefits and I generally like th …
5
votes
2answers
304 views
What is the lifetime and validity of C++ iterators ?
I'm planning to implement a list of Things in C++ where elements might be removed out of order. I don't expect that i'll need any kind of random access (i just need to sweep the li …
11
votes
6answers
962 views
What is the best way to do nested TRY AND FINALLY statement in Delphi
Hi What is the best way to do nested try & finally statements in delphi?
var cds1 : TClientDataSet;
cds2 : TClientDataSet;
cds3 : TClientDataSet;
cds4 : TClien …
0
votes
3answers
68 views
What are the advantages of using a concept like IStartable?
Instead of using an interface like this:
public interface IStartable
{
void Start();
void Stop();
}
I usually just make the constructor of an object run the Start() code …
0
votes
3answers
97 views
When does a mutable state value freed from heap?
On F# WikiBook under Encapsulating Mutable State section, there is a following code snippet.
> let incr =
let counter = ref 0
fun () ->
counter := !counter + …
1
vote
3answers
105 views
What other IoC containers have an IInitializable like feature?
I've been using Castle Windsor in my previous project and I liked it a lot. For my current project I'm looking to use a different IoC container. Castle Windsor hasn't had any new r …
1
vote
4answers
244 views
.NET - Finalizers and exit(0)
I have a .NET C# / C++ app which uses a call to exit(0) (from <stdlib.h>) in a thread in order to terminate.
The strange part is, under some circumstances, the finalizers of …
0
votes
1answer
129 views
MVC Object Instances or Static classes?
I am confused as to when to create object instances or Static Helper classes. For example, if I call a method to update a data model and submit to database, i create an instance of …
