0
votes
Factory Class - Should i populate my object with data here?
If you're sure you're going to be using all of the data you load from the SQLDataReader, then yes, you could do it at construction time in the factory. However if the data set has many fields, whi …
0
votes
Extend No-Constructor class
Hiding all public constructors is a technique used to prevent subclassing and force developers to use the class as intended. It may be the implementor wants you to use an Adapter or Facade or even …
-1
votes
Packet capture to database?
libpcap, wireshark round robin files
Look around, play with wireshark, look at how it achieves similar results to yours.
…
1
vote
Strategies for updating or versioning web services?
I can tell you that the solution of creating doAPIFunction, doAPIFunctionV2, and doAPIFunctionV3, etc has produced nothing but headaches at the place I work at. Add to that the lack of clearly des …
