zoukankan      html  css  js  c++  java
  • 使用TkbmMWThreadList实现线程安全列表

    早在2008年的2.90.00版本,作者就实现了TkbmMWThreadList,之后在kbmMW 4.40.00版本中,作者使用了Delphi的新特性,实现TkbmMWThreadList的泛型版本,用以实现线程安全的列表。要使用TkbmMWThreadList,首先要引用kbmMWGlobal单元。

    然后我们来看看,如何用TkbmMWThreadList实现自己的列表来管理对象。

    1.声明列表对象:

    FConnectionList:TkbmMWThreadList<TConnectionDataModule>;

    上面代码,用FConnectionList来管理TConnectionDataModule对象。

    2.建立FConnectionList实例:

    FConnectionList := TkbmMWThreadList<TConnectionDataModule>.Create;

    3.向对象列表填加被管理的对象:

    procedure TMainDatamodule.AddConnection(AConnectionDataModule: TConnectionDataModule);
    var
       lst:TList<TConnectionDataModule>;
    begin
         lst:=FConnectionList.BeginWrite;
         try
            lst.Add(AConnectionDataModule);
         finally
            FConnectionList.EndWrite;
         end;
    end;

    调用AddConnection方法,增加一个被管理的对象:

    ...
    AddConnection(cdm);
    ...

    4.清空列表对象:

    procedure TMainDatamodule.ClearAllConnection;
    var
       i:integer;
       lst:TList<TConnectionDataModule>;
    begin
         lst:=FConnectionList.BeginWrite;
         try
            for i:=lst.Count-1 downto 0 do
                lst.Items[i].Free;
            lst.Clear;
         finally
            FConnectionList.EndWrite;
         end;
    end;

    上面代码,清空列表对象中的所有被管理的对象。

    5.读取列表中的被管理的对象:

    function TMainDatamodule.GetConnectionPool(AConnectionName: string): TConnectionDataModule;
    var
      i: Integer;
      lst:TList<TConnectionDataModule>;
    begin
      Result := nil;
      lst:=FConnectionList.BeginRead;
      try
          for i := 0 to lst.Count - 1 do
          begin
            if lst.Items[i].Name = AConnectionName then
            begin
              Result := lst.Items[i];
              Break;
            end;
          end;
      finally
          FConnectionList.EndRead;
      end;
    end;

    基本实现方法,都写了,可以在线程中安全的使用FConnectionList对象,对TConnectionDataModule进行管理!

  • 相关阅读:
    MySQL——MySQL用户与数据库的关系
    Kafka——Kakfa的设计思想
    Hibernate建表——将MySQL的JSON列映射到Java字段(Jpa/Hibernate——Java)
    Spring Boot——Apache Commons包作用说明
    word转html工具
    html导出word
    html导出pdf
    获取dubbo-admin.war(自己maven编译)
    ajax提交表单中文呈现乱码解决
    JVM优化
  • 原文地址:https://www.cnblogs.com/kinglandsoft/p/10790385.html
Copyright © 2011-2022 走看看