Click here to Skip to main content
15,883,883 members
Articles / Programming Languages / C#

NetMX - a JMX port to the .NET world

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
10 Mar 2008LGPL34 min read 39.5K   268   11  
An introduction to NetMX - a lightweight .NET management solution.
using System;
using System.Collections.Generic;
using System.Text;

namespace NetMX.OpenMBean.Mapper
{
	/// <summary>
	/// The Open MBean Mapper Service is responsible monitoring MBean registration and creating proxy OpenMBeans 
	/// for ordinary ones to expose their functionality to clients that are able only to interact with OpenMBeans.
	/// </summary>
   public interface OpenMBeanMapperServiceMBean
   {
		/// <summary>
		/// Gets or sets the ObjectName patterns that are applied to determine if an MBean should be proxied by
		/// this Mapper Service.
		/// </summary>
      ObjectName[] BeansToMapPatterns { get; set; }
		/// <summary>
		/// Unregisters all the proxy OpenMBeans and scans through all the registered MBeans to determine which are to
		/// be proxied and then proxies them.
		/// </summary>
      void RefreshMappings();
		/// <summary>
		/// Flushes the cache containing mappings of CLR types to creates <see cref="OpenType"/>s. Method is usefull
		/// after changing the <see cref="ITypeMapper"/> chain of responsibility.
		/// </summary>
      void FlushMappedTypeCache();
   }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer (Senior) VSoft
Poland Poland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions