How do I find a good middle way to make this library safe for concurrent operations

I’ve made a little library called SignalR.EventAggregatorProxy

Before I push it into 1.0 state I need to fix so it works safely with concurrent operations. Easiest way is lock all operations but thats a huge performance impact.

The library queues event subscriptions and when a event comes in it checks the subscriptions and updates the clients using SignalR

This is the class that holds the subscriptions

There are 3 methods that write/read to the subscription collection(s) (I aggregate the subscription both on a client level and event level, so its two collections)

  • Subscribe
  • UnsubscribeConnection
  • Unsubscribe

And one that that reads

  • Handle

I realize since this is a library I can’t make it optimum for all users of the library, but how do I find a good middle way that does not use locks?

I think the Handle method is the most important method and should be prioritized for performance over the other 3.

I made this little Unittest to test for Concurrency fail

update:
I choose to have locked writes and unlocked reads. The writes didnt mutate existing state but overwrite the collection completely.

1

You can’t get away from using locks. You must ensure that calls to the Subscribe method will always atomically set the internal state with the new subscriber – so you must assume that someone will call that subscribe method in 2 threads at exactly the same time. Last thing you want is for 1 thread to succeed and add the new subscriber, only for the 2nd thread to jump in and set its subscriber only to stomp over the 1st subscriber’s entry in the internal collection. Finding that bug would be a nightmare as the user report will be “I subscribed and nothing happened” or worse “I subscribed, it returned success but I received no subscriptions”.

It is possible the Handle method doesn’t need to lock – as long as you can be sure that someone removing or adding a new subscriber doesn’t trash the state of the internal collection (ie a naive implementation would loop over all subscriptions… but what if the next loop comes across an entry that has just been removed? The answer is usually a crash, but sometimes undefined, even in a GC system where the removed object isn’t collected yet, it will be one day, usually just when its being used in a demo and then you’ll get the crash 🙂 ).

So to avoid locks.. you could make a copy of the internal collection of subscribers and use it in the Handle method without locking, so you have 2 collections – one of all subscribers, and one of ‘active’ subs. You can then block the Handle method and swap them when new members are added or removed in the Handle method as you’ll be the only one calling that method to send out to the subscribers.

Or you can extend this to add new subscribers to a different collection and safely merge them in the Handle method, but you will still have to cater for the case where 2 new subs are added simultaneously.

4

Don’t.

It’s not a static class, and they aren’t static methods, so there’s no reason why it shouldn’t be up to calling code to avoid concurrent calls.

With static methods, then you would have to do some of the work to make it handle concurrent calls because calling code can’t guarantee that it is the only calling code.

And of course with instance methods specifically geared at synchronising data-access or otherwise where being hit simultaneously by multiple threads is part of the point of it, then of course you have to be able to have that concurrent use.

But otherwise, you’re just in the way. You’re in the way of the user who knows they only ever hit the methods one at a time and so don’t need any locking. You’re in the way of the user who knows they hit the methods with several threads and therefore have coded a concurrency-handling strategy suitable to their use. And at the time of writing you’re really in the way of someone who locks on the EventProxy object itself because you’re using lock(this) so you’re locking on an object the writer of the calling code should be able to think of as “theirs”.

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

How do I find a good middle way to make this library safe for concurrent operations

I’ve made a little library called SignalR.EventAggregatorProxy

Before I push it into 1.0 state I need to fix so it works safely with concurrent operations. Easiest way is lock all operations but thats a huge performance impact.

The library queues event subscriptions and when a event comes in it checks the subscriptions and updates the clients using SignalR

This is the class that holds the subscriptions

There are 3 methods that write/read to the subscription collection(s) (I aggregate the subscription both on a client level and event level, so its two collections)

  • Subscribe
  • UnsubscribeConnection
  • Unsubscribe

And one that that reads

  • Handle

I realize since this is a library I can’t make it optimum for all users of the library, but how do I find a good middle way that does not use locks?

I think the Handle method is the most important method and should be prioritized for performance over the other 3.

I made this little Unittest to test for Concurrency fail

update:
I choose to have locked writes and unlocked reads. The writes didnt mutate existing state but overwrite the collection completely.

1

You can’t get away from using locks. You must ensure that calls to the Subscribe method will always atomically set the internal state with the new subscriber – so you must assume that someone will call that subscribe method in 2 threads at exactly the same time. Last thing you want is for 1 thread to succeed and add the new subscriber, only for the 2nd thread to jump in and set its subscriber only to stomp over the 1st subscriber’s entry in the internal collection. Finding that bug would be a nightmare as the user report will be “I subscribed and nothing happened” or worse “I subscribed, it returned success but I received no subscriptions”.

It is possible the Handle method doesn’t need to lock – as long as you can be sure that someone removing or adding a new subscriber doesn’t trash the state of the internal collection (ie a naive implementation would loop over all subscriptions… but what if the next loop comes across an entry that has just been removed? The answer is usually a crash, but sometimes undefined, even in a GC system where the removed object isn’t collected yet, it will be one day, usually just when its being used in a demo and then you’ll get the crash 🙂 ).

So to avoid locks.. you could make a copy of the internal collection of subscribers and use it in the Handle method without locking, so you have 2 collections – one of all subscribers, and one of ‘active’ subs. You can then block the Handle method and swap them when new members are added or removed in the Handle method as you’ll be the only one calling that method to send out to the subscribers.

Or you can extend this to add new subscribers to a different collection and safely merge them in the Handle method, but you will still have to cater for the case where 2 new subs are added simultaneously.

4

Don’t.

It’s not a static class, and they aren’t static methods, so there’s no reason why it shouldn’t be up to calling code to avoid concurrent calls.

With static methods, then you would have to do some of the work to make it handle concurrent calls because calling code can’t guarantee that it is the only calling code.

And of course with instance methods specifically geared at synchronising data-access or otherwise where being hit simultaneously by multiple threads is part of the point of it, then of course you have to be able to have that concurrent use.

But otherwise, you’re just in the way. You’re in the way of the user who knows they only ever hit the methods one at a time and so don’t need any locking. You’re in the way of the user who knows they hit the methods with several threads and therefore have coded a concurrency-handling strategy suitable to their use. And at the time of writing you’re really in the way of someone who locks on the EventProxy object itself because you’re using lock(this) so you’re locking on an object the writer of the calling code should be able to think of as “theirs”.

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

How do I find a good middle way to make this library safe for concurrent operations

I’ve made a little library called SignalR.EventAggregatorProxy

Before I push it into 1.0 state I need to fix so it works safely with concurrent operations. Easiest way is lock all operations but thats a huge performance impact.

The library queues event subscriptions and when a event comes in it checks the subscriptions and updates the clients using SignalR

This is the class that holds the subscriptions

There are 3 methods that write/read to the subscription collection(s) (I aggregate the subscription both on a client level and event level, so its two collections)

  • Subscribe
  • UnsubscribeConnection
  • Unsubscribe

And one that that reads

  • Handle

I realize since this is a library I can’t make it optimum for all users of the library, but how do I find a good middle way that does not use locks?

I think the Handle method is the most important method and should be prioritized for performance over the other 3.

I made this little Unittest to test for Concurrency fail

update:
I choose to have locked writes and unlocked reads. The writes didnt mutate existing state but overwrite the collection completely.

1

You can’t get away from using locks. You must ensure that calls to the Subscribe method will always atomically set the internal state with the new subscriber – so you must assume that someone will call that subscribe method in 2 threads at exactly the same time. Last thing you want is for 1 thread to succeed and add the new subscriber, only for the 2nd thread to jump in and set its subscriber only to stomp over the 1st subscriber’s entry in the internal collection. Finding that bug would be a nightmare as the user report will be “I subscribed and nothing happened” or worse “I subscribed, it returned success but I received no subscriptions”.

It is possible the Handle method doesn’t need to lock – as long as you can be sure that someone removing or adding a new subscriber doesn’t trash the state of the internal collection (ie a naive implementation would loop over all subscriptions… but what if the next loop comes across an entry that has just been removed? The answer is usually a crash, but sometimes undefined, even in a GC system where the removed object isn’t collected yet, it will be one day, usually just when its being used in a demo and then you’ll get the crash 🙂 ).

So to avoid locks.. you could make a copy of the internal collection of subscribers and use it in the Handle method without locking, so you have 2 collections – one of all subscribers, and one of ‘active’ subs. You can then block the Handle method and swap them when new members are added or removed in the Handle method as you’ll be the only one calling that method to send out to the subscribers.

Or you can extend this to add new subscribers to a different collection and safely merge them in the Handle method, but you will still have to cater for the case where 2 new subs are added simultaneously.

4

Don’t.

It’s not a static class, and they aren’t static methods, so there’s no reason why it shouldn’t be up to calling code to avoid concurrent calls.

With static methods, then you would have to do some of the work to make it handle concurrent calls because calling code can’t guarantee that it is the only calling code.

And of course with instance methods specifically geared at synchronising data-access or otherwise where being hit simultaneously by multiple threads is part of the point of it, then of course you have to be able to have that concurrent use.

But otherwise, you’re just in the way. You’re in the way of the user who knows they only ever hit the methods one at a time and so don’t need any locking. You’re in the way of the user who knows they hit the methods with several threads and therefore have coded a concurrency-handling strategy suitable to their use. And at the time of writing you’re really in the way of someone who locks on the EventProxy object itself because you’re using lock(this) so you’re locking on an object the writer of the calling code should be able to think of as “theirs”.

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

How do I find a good middle way to make this library safe for concurrent operations

I’ve made a little library called SignalR.EventAggregatorProxy

Before I push it into 1.0 state I need to fix so it works safely with concurrent operations. Easiest way is lock all operations but thats a huge performance impact.

The library queues event subscriptions and when a event comes in it checks the subscriptions and updates the clients using SignalR

This is the class that holds the subscriptions

There are 3 methods that write/read to the subscription collection(s) (I aggregate the subscription both on a client level and event level, so its two collections)

  • Subscribe
  • UnsubscribeConnection
  • Unsubscribe

And one that that reads

  • Handle

I realize since this is a library I can’t make it optimum for all users of the library, but how do I find a good middle way that does not use locks?

I think the Handle method is the most important method and should be prioritized for performance over the other 3.

I made this little Unittest to test for Concurrency fail

update:
I choose to have locked writes and unlocked reads. The writes didnt mutate existing state but overwrite the collection completely.

1

You can’t get away from using locks. You must ensure that calls to the Subscribe method will always atomically set the internal state with the new subscriber – so you must assume that someone will call that subscribe method in 2 threads at exactly the same time. Last thing you want is for 1 thread to succeed and add the new subscriber, only for the 2nd thread to jump in and set its subscriber only to stomp over the 1st subscriber’s entry in the internal collection. Finding that bug would be a nightmare as the user report will be “I subscribed and nothing happened” or worse “I subscribed, it returned success but I received no subscriptions”.

It is possible the Handle method doesn’t need to lock – as long as you can be sure that someone removing or adding a new subscriber doesn’t trash the state of the internal collection (ie a naive implementation would loop over all subscriptions… but what if the next loop comes across an entry that has just been removed? The answer is usually a crash, but sometimes undefined, even in a GC system where the removed object isn’t collected yet, it will be one day, usually just when its being used in a demo and then you’ll get the crash 🙂 ).

So to avoid locks.. you could make a copy of the internal collection of subscribers and use it in the Handle method without locking, so you have 2 collections – one of all subscribers, and one of ‘active’ subs. You can then block the Handle method and swap them when new members are added or removed in the Handle method as you’ll be the only one calling that method to send out to the subscribers.

Or you can extend this to add new subscribers to a different collection and safely merge them in the Handle method, but you will still have to cater for the case where 2 new subs are added simultaneously.

4

Don’t.

It’s not a static class, and they aren’t static methods, so there’s no reason why it shouldn’t be up to calling code to avoid concurrent calls.

With static methods, then you would have to do some of the work to make it handle concurrent calls because calling code can’t guarantee that it is the only calling code.

And of course with instance methods specifically geared at synchronising data-access or otherwise where being hit simultaneously by multiple threads is part of the point of it, then of course you have to be able to have that concurrent use.

But otherwise, you’re just in the way. You’re in the way of the user who knows they only ever hit the methods one at a time and so don’t need any locking. You’re in the way of the user who knows they hit the methods with several threads and therefore have coded a concurrency-handling strategy suitable to their use. And at the time of writing you’re really in the way of someone who locks on the EventProxy object itself because you’re using lock(this) so you’re locking on an object the writer of the calling code should be able to think of as “theirs”.

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật