Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in an attempt to not re-invent the wheel, im looking for any existing abstractions of the concept of Message, so that specific implementations such as email, sms or chat classes could be interchangeably bound to this common interface?

Own Quick Untested Mock-up

interface IMessage<T, U, V>
{
    Guid Id { get; set; }

    T Sender { get; set; }

    T Target { get; set; }

    U Subject { get; set; }

    V Body { get; set; }
}

i.e. what are the lowest common denominator characteristics of most current and future message types?

  • i did find some random interfaces, but they mixed specific Send methods and other Messager responsibilities into the contract.

  • i was thinking maybe Outlook or Exchange is using one, but could not find it.

share|improve this question
1  
You don't want an interface but a DTO. BTW, you are missing the possibility to specify multiple recipients. – Daniel Hilgarth Sep 15 '11 at 9:36
@Daniel Thanks! At programmatic level, would I still specify the Data Transfer Object with an interface, or is there a better way? 2) Realized post-hoc that multiple recipients can be specified with T as a collection type, but maybe I should use different types for Sender and Target then .. – Cel Sep 15 '11 at 9:50
There is no need for an interface, because that object doesn't DO anything. It just holds data. – Daniel Hilgarth Sep 15 '11 at 9:52
@Daniel I was thinking of implementing different validations for the properties e.g. EmailMessage would validate Target set with an @ regex, whereas SMSMessage would do the validation with a phone-number regex, but thinking about it these validations should probably be moved into the incoming T, U, V classes themselves. My best guess is to create a DTO using a struct then? – Cel Sep 15 '11 at 10:14
Correct, these validations belong into T, U and V. You can use a struct. However, I never use structs, so I might not be the best person giving advice about this particular topic. – Daniel Hilgarth Sep 15 '11 at 10:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.