Disclaimer: I haven't tested my claims, just read the documentation.
Payload is referring what is being stored. In your case the payload is the Win32 HANDLE. Since HANDLE is just an integer you wouldn't want to just do:
auto refHandle = RefCounted!HANDLE(WhatGetsMeAHandle());
Since this you would also need to call a Windows function when you are done with the handle.
When you were looking at std.containers.Array what you saw as a struct called Payload, which had a field called _payload. This is saying is that we are going to store this data in _payload inside this structure. And what this provides a level of indirection.
You will notice that RefCounted is actually used on the Array structure. This means the destructor for that struct will only be called when the reference count is 0. So the ~this() inside of Payload is where you would want to clean up the your HANDLE.
What is happening since struct is a value type, every time the structure goes out of scope the destructor is called, there isn't one for Array, but then we have a Payload which is wrapped in a RefCounted, the destructor for your RefCounted!Payload is also called. And only when the reference count reaches zero is the destructor for Payload itself called.
Now, RefCounted itself has reference semantics this means that having an Array a, you can then assign to auto b = a; and everything will be copied over, but RefCounted has a postblits defined meaning the data will not be copied, but the reference count will be
incremented.
I will now try and provide you with a wrapper outline for what you want. It will probably help you visualize the information above, but it may not be entirely correct. Let me know if something needs fixing.
struct MyWinWrapper {
struct Payload {
HANDLE _payload;
this(HANDLE h) { _payload = h; }
~this() { freeHandleHere(_payload); }
// Should never perform these operations
this(this) { assert(false); }
void opAssign(MyWinWrapper.Payload rhs) { assert(false); }
}
private alias RefCounted!(Payload, RefCountedAutoInitialize.no) Data;
private Data _data;
this(HANDLE h) { _data = Data(h); }
}
Since there is no default constructor for a struct you will probably want to provide a free function that returns this structure.