The loose-coupling tag has no wiki summary.
0
votes
0answers
11 views
A RESTful Web Service, Folder tree?
If I have a simple REST client using a HTTP server to contact a file store E.g. books/on-sale/prices.
We can put that in a database instead yes? This supposedly makes for 'loose coupling', why so?
...
4
votes
2answers
86 views
Loosely coupled observer pattern
I realise this subject has been covered to death but I am still struggling and could do with some specific help.
My aim is to implement a simple Observer pattern between some kind of observable (lets ...
0
votes
2answers
36 views
Should a infrastructure library by loosely coupled to another infrastructure layer?
Is there any smell associated with having say a File.IO library being loosely coupled to the logging library? Or should they be kept separate and only combined in the application services?
5
votes
2answers
82 views
Loose coupling with Class.forName()
interface Bank {
void connect();
}
class SBI implements Bank {
static{
System.out.println("Hello from SBI static");
}
public void connect() {
...
0
votes
1answer
30 views
How do I keep models loosely coupled when querying a many-to-many table in CodeIgniter?
I'm using CodeIgniter and have three tables and a model for each:
User - table of users
Product - table of products
UserProduct - table showing which users have which products (two foreign key ...
0
votes
2answers
87 views
Should one library call another or is it a task of controller in Codeigniter and in MVC in general
I have to make some design decision in my application using Codeigniter.
I have a method in controller that calls a library for creating PDF.
Also I have some class that takes a number as an ...
0
votes
3answers
78 views
Generics and Loose Coupling: Can Class<T> be decoupled without type assumptions?
I have been playing with loosely coupling my data access layer. I found the Dependency injection process quite helpful, but ran into a bit of a conundrum when considering the use of generics.
Is ...
0
votes
1answer
53 views
IoC hides platform mismatches
Assume you have a 3-layer application:
UI layer (UI)
Business layer (BLL)
Data layer (DAL): references 32-bit DLL, so it must compile as x86
In a traditional app, the UI would reference the BLL ...
1
vote
1answer
23 views
Deciding extent of coupling
I have a Component which has API exposed with some 10 functionality in all. I can think of two ways to achieve it:
Give out all these functionality as separate functions.
Expose only one function ...
2
votes
3answers
102 views
Dependency injection or service location?
I'm trying to learn dependency injection, and there are many subtleties to it I'm yet to grasp. One of the books that I've started reading for that purpose is "Foundations of Programming" by Karl ...
0
votes
1answer
91 views
Mediator/EventAggregator differences
Also, when i need to communicate between loosely coupled objects (for example, MVVM's ViewModel's), different books and blogs about best programming practices suggest use Mediator/EventAggregator ...
9
votes
6answers
214 views
Handling interdependent and/or layered asynchronous calls
As an example, suppose I want to fetch a list of files from somewhere, then load the contents of these files and finally display them to the user. In a synchronous model, it would be something like ...
1
vote
2answers
102 views
How to achieve Loose coupling using Ninject
I am new with Ninject. Can someone help me to achieve what I want.
I will give you my example. Please help me how you use NInject to get loose coupling.
Lets say I have an interface given below.
...
0
votes
1answer
82 views
Delegate class in main app to class in rails engine
I have an isolated Rails Engine: Admin.
In that Engine I create Sites through a GUI.
in Engine:
module Admin
class Site < ActiveRecord::Base
end
end
In main app I inherit from the engine's ...
1
vote
1answer
44 views
Does WCF NetTcp binding increase coupling?
Currently we have created web API's using either SOAP or a more plain HTTP REST-like approach. At the same time there are multiple ways to let server and clients more or less evolve independently, ...
0
votes
0answers
34 views
How to reach loose object coupling with sync operations?
I am currently working on some organisation of some modules:
var Environment = function(handler) {
this._handler = handler;
console.log(this.request('calculator', 'addition', 3, 5);
};
...
0
votes
1answer
68 views
Design patterns - events or direct references
Let's say we have a Java application designed with MVP with a page displaying some independent modules. There are, among others, two independent MVP modules in the app we will take into consideration. ...
4
votes
3answers
185 views
How to make the framework and the dependent applications loosely coupled?
I have a specific case and I want to know the best practice way to handle it.
I make a specific .NET framework (web application). This web application acts like a platform or framework to many other ...
1
vote
1answer
172 views
Unit converting design pattern in C#
I need to make conversions between units, each unit has 2 parts, its name and an integer, the integer part can be either positive or negative. I need my Unit class to have dependency injection and be ...
1
vote
0answers
228 views
Loose coupling between objects in Java? [closed]
Hi ladies and gentlemens! Im new here but i have been reading and got answers on my earlier questions i had in C# and Java and have never been able to tell a specific question up to now.
I working ...
0
votes
0answers
41 views
Change in nhibernate reference behaviour when using an interface
I am trying to make my collections and references between my entities more loosely coupled and have introduced interfaces instead of concrete classes. e.g.
public virtual IAnimal Horse { get; set; }
...
0
votes
3answers
61 views
Selecting a service implementation based on business rules
In an application I am working on, we have actions that trigger when a new entity is added to the repository. One of the new actions is supposed to use a service (as in, service layer, not web service ...
2
votes
1answer
148 views
Lua: can I use “require” as a form of dependency injection?
I'm designing a hospital integration system which consumes data from various hospitals (our customers), and then applies specific business rules to said data based on reading configurations from a ...
6
votes
5answers
180 views
Is it a leaky abstraction if implementation of interface calls Dispose
Consider this code:
public class MyClass()
{
public MyClass()
{
}
public DoSomething()
{
using (var service = new CustomerCreditServiceClient())
{
var creditLimit = ...
1
vote
2answers
141 views
How to conciliate DRY and Loose Coupling in Javascript Libraries?
I am building my own JS library;
The idea is that the library should be comprised of small, independent modules, and some slightly larger utilities, that serve mainly to iron out browser differences.
...
1
vote
2answers
59 views
Persisting Objects while Still Preserving Loose Coupling
I working on a project in a microcontroller and I need to persist some settings. Pretend this is an iPod. I need to save various settings like CurrentSongPlaying, CurrentVolume, etc. so that when I ...
0
votes
1answer
225 views
Calling services from the Orchestrating layer in SOA?
The Service Oriented Architecture Principles site says that Service Composition is an important thing in SOA. But Service Loose Coupling is important as well.
Does that mean that the "Orchestrating ...
0
votes
4answers
151 views
How to achieve loose coupling between JDBC drivers and source code?
I don't want to make my code tight coupled to some JDBC driver (for example MySql). I want to make universal code, that can work with many database implementations. And I don't quite understand how to ...
4
votes
1answer
604 views
Exposing std::vector over a dll boundary - best practice for compiler independence
Exposing STL containers over DLL boundaries is not a good idea, and generally not possible (see this answer for why, and this one about exposing a std::list over a dll boundary). I need to be able to ...
0
votes
0answers
60 views
How extreme-coupling in UNIX-like OSs can be justified? [closed]
As we know a very basic software engineering principal is loose coupling.
But we know that programs in UNIX-like OSs are extremely coupled. How this can be explained/justified?
Update:
extremely ...
0
votes
2answers
301 views
separation of concerns vs loose coupling
I would like to understand the difference between separation of concerns and loose coupling.
Is it true that coding by separation of concerns gives a loosely coupled code?
Thank you.
1
vote
3answers
610 views
Reducing coupling simple example needed for beginner
Just out of college and am coming across some code where I need to reduce coupling. But I don’t understand fully all the concepts and would like a simple example to help me. To get you started I have ...
1
vote
1answer
79 views
C# Events between children
I've been having some trouble with events:
Lets say I have 3 classes 1 is the 'Master' and 2 'slaves'.
The Master instantiates the slaves.
One of the slaves is a debug-display class that reports ...
33
votes
9answers
833 views
How to understand the big picture in a loose coupled application?
We have been developing code using loose coupling and dependency injection.
A lot of "service" style classes have a constructor and one method that implements an interface. Each individual class is ...
1
vote
2answers
158 views
Is passing $this to a static method tight coupling?
Here is a simple example:
class Class_A {
protected $_property;
public function method()
{
Class_B::method($this);
}
public function getProperty()
{
...
1
vote
3answers
63 views
How can I make my MailingList manager class more loosly coupled?
I am working on a simple project involving Prospects and Offers. This project will integrate with a third-party mailing list provider, which will use Prospect objects to manage email addresses on the ...
1
vote
1answer
84 views
Zend Framework Quick Start does it contain coupled objects?
I'm still trying to get to grips with dependency injection and loosely coupled objects. Looking at the Zend Framework Quick Start, I noticed the following methods in the ...
1
vote
2answers
88 views
PHP e-commerce system circular dependency issue
I'm just getting started with dependency injection and I have immediately hit a problem: I have two classes that depend on each other.
The classes are Basket and Shipping.
In my Basket class I have ...
2
votes
2answers
109 views
Query regarding dependency Injection in PHP
I've been reading up on dependency injection and I think I pretty much understand the concepts, including constructor injection and setter injection.
However, I am unsure what I would do in the ...
0
votes
1answer
314 views
Entity Framework 4.1 Loose Coupling on Entities
Need a little help please if anyone can shed some light on this.
I've created a code-first MVC 3 application which I have working fine. I'm refactoring now to remove as much coupling as possible as ...
3
votes
2answers
1k views
MVC 3 passing entity as an Interface
I'm currently working on an MVC 3 project using Ninject as my DI, the business objects are stored in a separate assembly. I'm running into an issue with the controller parameters, when posting back ...
1
vote
1answer
360 views
Loose coupling NativeMethods
I need to use a native DLL from C#. The DLL exposes several methods which I can access via P/Invoke, and several types. All this code is in a standard NativeMethods class. To keep things simple it ...
1
vote
3answers
143 views
Loose coupling of custom callbacks in jQuery
I was wondering if there exists a design pattern/framework which allows for the loose coupling of callbacks in jQuery.
Basically, I have a ajax call which retrieves settings that will be required in ...
0
votes
2answers
106 views
How do I have an object subscribe to another's event while keeping the two loosely coupled?
I have the following bits of code which, in my mind, seem like the bare basics necessary to implement the Observer pattern. Is this standard, or am I doing something wrong?
public class LayoutManager
...
3
votes
1answer
102 views
How do I loosely couple a process to a user interface for VBA and/or .Net?
This question came to mind when I asked to put a progress bar on a long running process where the process has no concept of a user interface. In fact, the process is being written into a library to ...
0
votes
2answers
94 views
Help with design multi-threaded execution engine for Loosely coupled systems
I need to build an "execution engine" that will listen to requests from variety of systems and will perform those requested tasks.
I want to expose in the "execution engine" a web-service and each ...
7
votes
4answers
536 views
I know how to use dependency injection but I recognize no practical advantage for it
It is about this (Inject the dependency)
private readonly ICustomerService _customerService;
public Billing(ICustomerService customerService)
{
_customerService = customerService;
}
versus this ...
0
votes
1answer
274 views
What is Loosely Coupled Code?
I recently learned Ruby and Rails, I come across these terminologies, that I can't understand off the bat.
So Please explain, ( with analogies, if possible ) what is Loosely coupled Code.
1
vote
3answers
116 views
Help with debate on Separation of concerns (Data Access vs Business Logic)
I had a debate with my co-worker on whether certain logic belongs in the data access or business logic layer.
The scenario is, the BLL needs some data to work with. That data primarily lives in ...
2
votes
2answers
455 views
AS3 central event dispatcher shared between instances (not static)
I'm building a flash app (just AS3 with FlashDevelop) and I'm having some trouble keeping things loosely coupled around the event system. I've done a lot of reading about central event systems and ...





